How to print elements from Binary Tree by level in c [closed]
问题 Closed . This question needs details or clarity. It is not currently accepting answers. Want to improve this question? Add details and clarify the problem by editing this post. Closed 4 years ago . Improve this question I got binary tree, not BST, so elements are not sorted, and information that every node holds is string type. When I am printing elements that hold integers in BST I do it with recursion like this: (in_order printing) void PrintElements(const Data* node) { // Check if its