Search Results

5
votes
4answers
397 views

slightly weird (imo) C++ code

Sorry if this is simple, my C++ is rusty. What is this doing? There is no assignment or function call as far as I can see. This code pattern is repeated many times in some code I inherited …
2
votes

What Does {0} Mean in C?

It's been awhile since I worked in c/c++ but IIRC, the same shortcut can be used for arrays as well. …
0
votes

traverse a Binary search tree

Here is some psuedo code of a preorder that may help. void Preorder( out, int parent ) { out << items[parent]; left = parent * 2 + 1; right = parent * 2 + 2; …