摘要: #include<bits/stdc++.h>using namespace std;struct Node{ int data; Node *next;};Node *head,*p,*r;int x;int main(){ cin>>x; head=new Node; r=head; while 阅读全文
posted @ 2021-08-10 10:55 映波yoyo 阅读(18) 评论(0) 推荐(0)