摘要: 代码: #include <iostream> typedef class Node{public: int value; Node* Next; Node(int data):Next(NULL){ this->value = data; }}Node,*node; void printCommo 阅读全文
posted @ 2020-08-03 02:49 诗和远方* 阅读(319) 评论(0) 推荐(0) 编辑