摘要: #include<stdio.h> #include<stdlib.h> typedef int E; typedef struct node { E val; struct node* next; }ListNode; ListNode* list_creat() { ListNode* list 阅读全文
posted @ 2024-05-10 23:03 Uiney 阅读(4) 评论(0) 推荐(0) 编辑