Loading

摘要: 尾插法 //实现方式 Node* createListTailInsert() { Node* head = (Node*)malloc(sizeof(Node)); // 创建头节点 head->next = NULL; int n, data; printf("请输入要插入的节点数: "); s 阅读全文
posted @ 2025-03-21 21:22 androllen 阅读(29) 评论(0) 推荐(0)