Is there a way to turn a tree(defined in binary tree) to a real binary tree?
typedef char ElemType; typedef struct Tnodes { ElemType data; struct Tnodes* FirstChild; struct Tnodes* NextSibling; } TNode;
https://stackoverflow.com/questions/66897193/turning-a-tree-to-a-binary-tree April 01, 2021 at 09:08AM
没有评论:
发表评论