这名用户暂未设置签名。
追踪最近的用户名外显变动记录。
最近的文章、讨论、云剪贴板与社区记录
在讨论《链表30分求调》回复:
@[__notTrueLight__](luogu://user/1255488) 访问的问题改好了,现在是80分超时,大佬能帮忙再看看吗,谢谢大佬 ```cpp #include #define ll long long using namespace std; struct Node{ int data; Node…
```cpp #include #define ll long long using namespace std; struct Node{ int data; Node *next; }; Node *head,*p; int n,x,y,k; void Add(int x,int y){ p=head->next;…