Linked List from binary search tree using in order

后端 未结 0 1112
孤城傲影
孤城傲影 2020-12-03 01:07

I have a BST storing some data. If I display it using this function, it is displayed in descendant order.

void print_inorder_desc(tree *b)
{
    if(b!=NULL)
          


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题