All Questions
Tagged with pointers binary-tree
2 questions
2
votes
2
answers
303
views
Can you define node pointers in a base binary tree class?
I've created two separate binary tree classes, with some shared functions/variables and some that are not shared. So I have tried to abstract away the similarities in a base BinaryTree class.
class ...
-2
votes
2
answers
183
views
What is the correct use of -> operator when working with pointers?
I'm pretty new with C so I have encountered many doubts with pointers.
I've already search a lot about this but there are some things that still are not clear for me, and I also think this will help ...