摘要: (1)今日安排链表逆置题目要求:本题要求实现一个函数,将给定单向链表逆置,即表头置为表尾,表尾置为表头。 (2)源代码 #include <stdio.h> #include <stdlib.h> struct ListNode { int data; struct ListNode *next; 阅读全文
posted @ 2021-10-26 21:14 今天又双叒叕在敲代码 阅读(34) 评论(0) 推荐(0) 编辑