N叉树一 基本实现.pdf

  1. 1、本文档共3页,可阅读全部内容。
  2. 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
  3. 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载
  4. 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
N叉树一 基本实现

丢了一次以前写的算法的文档和源代码 ,Ubuntu One不可靠啊 !只好从头再写一遍。 本文实现了一个树 ,不是二叉树 ,是N叉树。也就是允许一个节点拥有多个子节点。 不是为了做题 目糊弄人 ,所以内存管理不允许泄漏 ,用了C++11的shared_ptr。先看看调用代码 : 源码 打印 ? 01. #include iostream 02. #include memory 03. 04. using namespace std; 05. 06. #include tree.h 07. using namespace freebird; 08. 09. 10. using node_type = shared_ptrnodeint; 11. using node_iterator = vectorshared_ptrnodeint::iterator; 12. 13. treenode_type t; 14. 15. void init(){ 16. node_type n1(new nodeint(1)); 17. t.root(n1); 18. 19. node_type n2(new nodeint(2)); 20. node_type n3(new nodeint(3)); 21. node_type n4(new nodeint(4)); 22. 23. n1-push_back(n2); 24. n1-push_back(n3); 25. n1-push_back(n4); 26. 27. } 28. 29. void view_root(){ 30. node_type r = t.root(); 31. coutthe value of root:r-value()endl; 32. 33. node_iterator itor = r-begin(); 34. node_iterator last = r-end(); 35. for(;itor!=last;++itor){ 36. node_type cur_node = *itor; 37. coutthe value of roots one child:cur_node-value()endl; 38. } 39. 40. } 41. 42. int main(int args,char* argv[]){ 43. 44. init(); 45. 46. view_root(); 47. 48. 49. 50. } init函数初始化tree,放了一个根节点 ,然后加入三个子节点。 view_root将四个节点数据遍历出来。 tree这个类看上去可有可无 ,其实不然。今后会将查找 ,遍历等算法封装在tree类里面 ,方便使用。 注意using的用法 ,是C++11的template aliases。 using node_type shared_ptrnodeint; 我用的是GCC4.7.0,Ubuntu 12.04,CMake. 现在看看tree.h中的实现。 源码 打印 ? 01. #ifndef _TREE_H 02. #define _TREE_H 03. 04. #include vector 05. #include memory 06. 07. namespace freebird { 08. 09. templatetypename T 10. class node{ 11. public: 12. node(T value):value_(value){ 13. } 14. 15. 16. 17. /** 18. * insert child node to the end 19. */ 20. void

文档评论(0)

yan698698 + 关注
实名认证
内容提供者

该用户很懒,什么也没介绍

1亿VIP精品文档

相关文档