摘要: 前言 基础知识 Code Block struct Node { int data; struct Node* next; }; 创建链表(用表头表示整个链表) //创建链表表头(结点) struct Node* CreatList() { struct Node* HeadNode = (stru 阅读全文
posted @ 2022-09-06 18:37 伯宁君 阅读(35) 评论(0) 推荐(0) 编辑