ruijiege

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 35 下一页

2021年7月31日

摘要: /** * 因为求第三大的数,所以需要一个指针存放第三大的 * 如果后面的数大于最大数和第二大的数都需要把最大数,第二大,的数移动 * @param nums * @return */ public static int thirdMax(int[] nums) { if (nums.length= 阅读全文
posted @ 2021-07-31 08:13 哦哟这个怎么搞 阅读(20) 评论(0) 推荐(0) 编辑

摘要: public ListNode middleNode(ListNode head) { ListNode slow =head, fast =head; while (fast!=null || fast.next != null){ slow = slow.next; fast = fast.ne 阅读全文
posted @ 2021-07-31 07:20 哦哟这个怎么搞 阅读(26) 评论(0) 推荐(0) 编辑

2021年7月30日

摘要: public static void rotate(int[] nums, int k) { k = k%nums.length; reverse(nums,0,nums.length); reverse(nums,0,k); reverse(nums,k,nums.length); } publi 阅读全文
posted @ 2021-07-30 22:07 哦哟这个怎么搞 阅读(26) 评论(0) 推荐(0) 编辑

2021年7月29日

摘要: /** * 思想简单,用一个指针指向第二个重复的字符即可,然后判断每一段的大小,通过map保存没有重复字符的索引 */ public static int lengthOfLongestSubstring(String s) { int pre=0,maxlen=0; Map<Character, 阅读全文
posted @ 2021-07-29 22:44 哦哟这个怎么搞 阅读(27) 评论(0) 推荐(0) 编辑

2021年7月23日

摘要: public static int[] twoSum(int[] nums, int target) { Map<Integer,Integer> map = new HashMap(); int[] a = new int[2]; for (int i = 0; i < nums.length; 阅读全文
posted @ 2021-07-23 16:59 哦哟这个怎么搞 阅读(31) 评论(0) 推荐(0) 编辑

摘要: public static int[] sortedSquares(int[] nums) { //定义一个双指针 int left=0,right=nums.length-1; int[] res = new int[right+1]; //因为新数组需要排序 for (int i = nums. 阅读全文
posted @ 2021-07-23 16:39 哦哟这个怎么搞 阅读(24) 评论(0) 推荐(0) 编辑

2021年7月22日

摘要: https://leetcode-cn.com/problems/first-bad-version/ public int firstBadVersion(int n) { int left=0,right=n,mid; while (left<right){ mid = ((right-left 阅读全文
posted @ 2021-07-22 17:47 哦哟这个怎么搞 阅读(20) 评论(0) 推荐(0) 编辑

摘要: public static int search(int[] nums, int target) { //双指针 int left=0,right=nums.length-1; int mid=0; int res = -1; while (left<=right){ //防止int溢出如果是写为( 阅读全文
posted @ 2021-07-22 17:40 哦哟这个怎么搞 阅读(30) 评论(0) 推荐(0) 编辑

2021年7月20日

摘要: package cn.jiedada.controller; import java.util.ArrayList; import java.util.List; import java.util.Stack; /** * 爬楼梯 */ class Solution { public static 阅读全文
posted @ 2021-07-20 20:03 哦哟这个怎么搞 阅读(27) 评论(0) 推荐(0) 编辑

摘要: package cn.jiedada.controller; import java.util.ArrayList; import java.util.List; import java.util.Stack; /** * 数的中序遍历 */ class Solution { public stat 阅读全文
posted @ 2021-07-20 19:33 哦哟这个怎么搞 阅读(20) 评论(0) 推荐(0) 编辑

上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 35 下一页