Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 ANSI C 中用于表示类似 DOM 的层次结构的好的数据结构是什么?
肯定是一棵树……DOM 是一种树结构。
使用最一般的树定义:
struct HtmlElement { ... /* Tag name, attributes, etc */ struct HtmlElement *pFirstChild; struct HtmlElement *pNextSibling; };