2020年4月21日
摘要: #include<stdio.h> #include<stdlib.h> typedef struct node { int data; struct node * prev; struct node * next; }*Lnode,Node; Lnode appendNode(Lnode head 阅读全文
posted @ 2020-04-21 10:43 猫柳 阅读(244) 评论(0) 推荐(0)