What's the difference between the data structure Tree and Graph?

后端 未结 10 1890
醉话见心
醉话见心 2021-01-29 17:35

Academically speaking, what\'s the essential difference between the data structure Tree and Graph? And how about the tree based search and Graph based search?

10条回答
  •  無奈伤痛
    2021-01-29 18:15

    one root node in tree and only one parent for one child. However, there is no concept of root node. Another difference is, tree is hierarchical model but graph is network model.

提交回复
热议问题