05 2024 档案

摘要:1:链表 点击查看代码 #include <bits/stdc++.h> using namespace std; typedef struct node{ int data; struct node *next; }listnode,*list1; typedef struct now{ int 阅读全文
posted @ 2024-05-03 17:08 清初 阅读(15) 评论(0) 推荐(0)