javalruleetcode-geektime-leetcode:极客时间算法40讲中涉及的leetcode题目

时间:2024-07-19 16:31:41
【文件属性】:

文件名称:javalruleetcode-geektime-leetcode:极客时间算法40讲中涉及的leetcode题目

文件大小:21KB

文件格式:ZIP

更新时间:2024-07-19 16:31:41

系统开源

java lru leetcode [TOC] 简述 极客时间算法40讲中所出现的leetcode算法题 题目 示例: 输入: 1->2->3->4->5->NULL 输出: 5->4->3->2->1->NULL 代码 递归 /** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */ class Solution { public ListNode reverseList(ListNode head) { if(head == null || head.next == null) return head; ListNode node = reverseList(head.next); head.next.next = head; head.next = null; return node; } } 迭代 /** * Definition for singly-linked list


【文件预览】:
geektime-leetcode-master
----README.md(85KB)

网友评论