1. 首页
  2. 课程学习
  3. C++/C
  4. C语言链表类面试题.docx

C语言链表类面试题.docx

上传者: 2020-08-22 12:54:54上传 DOCX文件 19.69KB 热度 15次
C语言链表类面试题.docx struct node { int data; struct node* next; }; 创建单链表的程序为: struct node* create(unsigned int n) { //创建长度为n的单链表 assert(n > 0); node* head; head = new node; head->next = NULL; cout > head->data; if (n == 1) { return head; } node* p = h
用户评论