weinan030416

导航

2022年10月5日 #

链表实现

摘要: 输入数字并输出的链表 #include<iostream> #include <stdlib.h> using namespace std; ​ struct Node { int data; struct Node*next; }; ​ int main() { int num; cin>>num 阅读全文

posted @ 2022-10-05 09:56 楠030416 阅读(18) 评论(0) 推荐(0) 编辑