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; };