随笔分类 -  作业

摘要:include <stdio.h> include <stdlib.h> // 定义链表节点结构体 typedefstruct ListNode { int data; struct ListNode* next; }; // 查找倒数第k个节点的函数 int findKthFromEnd(stru 阅读全文
posted @ 2024-04-22 19:05 山风辞烟 阅读(32) 评论(0) 推荐(0)