mu_tou_man

导航

 

2014年9月2日

摘要: #include #include #include using namespace std;struct TreeNode { struct TreeNode* left; struct TreeNode* right; char elem; ... 阅读全文
posted @ 2014-09-02 22:35 mu_tou_man 阅读(168) 评论(0) 推荐(0) 编辑
 
摘要: #include#include using namespace std;struct Node{ int data; Node *next;};//没有头结点的插入新节点Node* AddNode(Node *head,int num)//如果是void 类型的 那么head要用指向指... 阅读全文
posted @ 2014-09-02 17:22 mu_tou_man 阅读(225) 评论(0) 推荐(0) 编辑