摘要: 【数据结构】链表(单链表实现-静态链表) 代码: #include<iostream> #include<math.h> using namespace std; typedef struct node { int data; struct node *next; }NODE; int main(v 阅读全文
posted @ 2024-04-23 14:11 一灯大师、 阅读(17) 评论(0) 推荐(0)