mm...what does the arrow thing do? lol i dont know what its called..therefore i have no clue what i'd search in google. i'm sure "the arrow thing" wouldn't come up with anything i'd be interested in.. example:
thats from the binary search tutorial and i dont know what its doingCode:else if ( header->data != search_key ) { int dir = header->data < search_key; return find_subtree ( header->link[dir], search_key ); }so its kind of hard to understand whats going on..
also - how do you use the question mark? like i know its supposed to be a conditional, but what does it test?
thanks



LinkBack URL
About LinkBacks
so its kind of hard to understand whats going on..



By the way, that tutorial is out of date. The current version can be found on my
But at some point you'll find that you understand the syntax and semantics of the language, and just reading code and explanations of it won't give you enough insight into the logic behind the solution. When that happens, you'll be forced to drop more into theory to figure out what's going on, and the best way to do that is through books.
thanks.