摘要: #include <stdio.h>#include <malloc.h>typedef struct node { struct node*next; int data;}node;int main(){ node*head; head = (node*)malloc(sizeof(node)); 阅读全文
posted @ 2019-10-27 22:12 三行代码划江湖 阅读(1158) 评论(0) 推荐(0) 编辑