摘要: P1996 #include<stdio.h> #include<stdlib.h> struct people { int num; struct people *next; }; int main() { struct people *head,*t,*s,*p; head=(struct pe 阅读全文
posted @ 2021-12-04 10:55 Oranges 阅读(80) 评论(0) 推荐(0) 编辑
摘要: #include<bits/stdc++.h> using namespace std; struct edge{ int v; edge *next; }; int main(){ //创建 edge *head = (edge*)malloc(sizeof(edge)); head->next 阅读全文
posted @ 2021-12-04 10:09 Oranges 阅读(93) 评论(0) 推荐(0) 编辑