Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+4
Strength to Decrease Rep
-1
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
2 Commented Posts
0 Endorsements
Ranked #4K
~4K People Reached
About Me

Computer's Engeneer Student

Favorite Tags
Member Avatar for himanjim

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 …

Member Avatar for Freaky_Chris
0
150
Member Avatar for sk8ndestroy14
Member Avatar for sj87

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 …

Member Avatar for sj87
0
88
Member Avatar for taconator

[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 …

Member Avatar for taconator
0
119
Member Avatar for sj87

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

Member Avatar for sj87
1
54
Member Avatar for comCY

[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]

Member Avatar for sj87
0
76
Member Avatar for aasi007onfire

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 ) { …

Member Avatar for Narue
0
98
Member Avatar for Koteswar

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]

Member Avatar for sj87
0
2K
Member Avatar for tito_mbo

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 ) …

Member Avatar for sj87
0
133