积极答复者
.net framework 里是否提供了Tree数据类型?

问题
答案
-
http://msdn.microsoft.com/en-us/vcsharp/aa336800.aspxSortedDictionary内部使用B树实现排序的
The following is signature, not part of post
Please mark the post answered your question as the answer, and mark other helpful posts as helpful.
Visual C++ MVP- 已标记为答案 cx_akns 2010年1月25日 1:06
全部回复
-
你好!
C#提供了TreeNode类,你通过组合或封装TreeNode就实现一个Tree类了!
周雪峰- 已建议为答案 mldarkModerator 2010年1月22日 3:51
-
没有提供内置的 Tree 或者 BinaryTree 数据类型,这些类型自己写也就是十分钟的事情。这应该属于数据结构的范畴了,BCL 没有必要提供所有的数据结构基础抽象数据类型 (ADT),Tree 并不是特别常用 (与 String、List 和 Array 相比)。
Mark Zhou- 已建议为答案 肖小勇Moderator 2010年1月23日 0:59
-
http://msdn.microsoft.com/en-us/vcsharp/aa336800.aspxSortedDictionary内部使用B树实现排序的
The following is signature, not part of post
Please mark the post answered your question as the answer, and mark other helpful posts as helpful.
Visual C++ MVP- 已标记为答案 cx_akns 2010年1月25日 1:06