BST comparing parents to the rootLets say for example I have a BST that is sorted by char names, using strcmp. IF greater than 0 go r...
creating a copy of BST [code]void copy(node *& dest, node * root) { if(!root) { dest = NULL; return;...
remove function not workingBelow is my .h file and the code below that is my function that I'm having troubles with. Its suppos...
swapping lettters in arrayIt doesn't print out the result at the end.
swapping lettters in array[code] temp1 = word[10];[/code] word[10] is the length of the array, if i put in swap1 that just co...
This user does not accept Private Messages