- Strength to Increase Rep
- +4
- Strength to Decrease Rep
- -1
- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
Computer's Engeneer Student
Re: May be it helps you to see a little math ( cause, math doesn't lie ;-) ): The pseudo-code for this algorithm has this structure: [code] FOR I = 0 TO N-1 /* It cuts when it compares against N */ FOR J = 0 TO N-I-1 /* It cuts … | |
Hello, Im studing functional programming using haskell and i have problems with some excercises about types. They give me an expresion and i have to wirte down the type for that expresion. I was wondering if there is any method or something that allow me to make that without loosing … | |
Re: [QUOTE=taconator;426673]I need some help. I have to translate a c app into java. Which would be no problem if I knew c. Is there a good uber begginers level tutorial somewhere, that i might be able to figure out what this c code is doing? I mean, i am seeing … | |
Hello everyone! I'm Juan ( spanish for John ). I'm 21, from Buenos Aires, Argentina. I study Computers Engeneer and i'm looking forward to integrate this comunity! Help with whatever I can and learn as much as posible from all of you! Juan | |
Re: [QUOTE=comCY;393352]i don't have a text book[/QUOTE] You always have a text book: Google, Wiki, and plenty of other sites. Start with this link: [URL="http://en.wikipedia.org/wiki/Algorithm_characterizations"]http://en.wikipedia.org/wiki/Algorithm_characterizations[/URL] | |
Re: Its posible to do that, but in most of the cases you use it, it will fail. For instance, try to compile this and see the results: [code=C] #include <stdio.h> struct { char * name; int age; }; struct { long artNum; float pr; }; int main( void ) { … | |
Re: I think this might help you: [URL="http://heim.ifi.uio.no/~stanisls/helppc/scan_codes.html"]http://heim.ifi.uio.no/~stanisls/helppc/scan_codes.html[/URL] | |
Re: As Narue told you, backtraking is just one of the existant strategies to solve some kind of problems, so it makes no sense asking for a "Standard C code for backtraking". May be this will help you: Backtraking is basically, a strategy ( often used to solve recursive problems ) … |