首页
Python
Java
前端
数据库
Linux
Chatgpt专题
开发者工具箱
leetcode154专题
Leetcode154: Reorder List
Given a singly linked list L: L0→L1→…→Ln-1→Ln, reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→… You must do this in-place without altering the nodes' values. For example, Given {1,2,3,4}, reorder it to {
阅读更多...
leetcode154 寻找旋转排序数组中的最小值 II
文章目录 1. 解法2. 原题 [154. 寻找旋转排序数组中的最小值 II](https://leetcode.cn/problems/find-minimum-in-rotated-sorted-array-ii/) 1. 解法 class Solution {public int findMin(int[] nums) {int left = 0;int right =
阅读更多...