摘要: include <stdio.h> include <stdlib.h> typedef struct Node { int data; struct Node *prior; struct Node *next; } Node; // 创建双向循环链表 Node* createList(int a 阅读全文
posted @ 2025-11-20 20:29 李亚宁1 阅读(7) 评论(0) 推荐(0)