摘要: 1 /* 2 寻常的函数实现 3 并非类定义 4 */ 5 6 #include 7 #include 8 using namespace std; 9 struct Node{ 10 int value; 11 Node * next; 12 }; 13 void build_link(Node * a,int n){ //建表 14 Node *p... 阅读全文
posted @ 2018-04-25 09:27 ISGuXing 阅读(445) 评论(0) 推荐(0) 编辑