1.0 数据结构:树的例子
2016-12-25 本文已影响79人
能量熊
- 动物分类
-
目录结构
directory.png -
html代码嵌套结构
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>simple</title> </head> <body> <h1>A simple web page</h1> <ul> <li>List item one</li> <li>List item two</li></ul> <h2><a href="http://www.cs.luther.edu">Luther CS </a><h2> </body> </html>
树的特点
1. 层级性
循着树的层级结构路径移动,越接近顶部,概念越广,普遍性越大;越靠近底部,范围越小,特例性越强
2. 子节点独立性
一个节点的子节点与另外一个节点的子节点互不相干,是独立的。 修改其中一个,不会影响到另外一个