上一页 1 2 3 4 5 6 7 ··· 22 下一页
摘要: /** * Definition for binary tree * public class TreeNode { * int val; * TreeNode left; * TreeNode right; * TreeNode(int x) { val = x; } * } */ public class BSTIterator { ... 阅读全文
posted @ 2017-10-25 01:00 Weiyu Wang 阅读(95) 评论(0) 推荐(0) 编辑
摘要: class Solution { public String fractionToDecimal(int numerator, int denominator) { StringBuilder sb=new StringBuilder(); if(numerator0||numerator>0&&denominator0) sb.a... 阅读全文
posted @ 2017-10-24 07:13 Weiyu Wang 阅读(88) 评论(0) 推荐(0) 编辑
摘要: class Solution { public int compareVersion(String version1, String version2) { String[] v1=version1.split("\\."); String[] v2=version2.split("\\."); int i=0; ... 阅读全文
posted @ 2017-10-24 04:40 Weiyu Wang 阅读(112) 评论(0) 推荐(0) 编辑
摘要: class Solution { public int maximumGap(int[] nums) { if(nums.length<2) return 0; int max=Integer.MIN_VALUE; int min=Integer.MAX_VALUE; for(int num:nums... 阅读全文
posted @ 2017-10-24 04:27 Weiyu Wang 阅读(133) 评论(0) 推荐(0) 编辑
摘要: ph 阅读全文
posted @ 2017-10-24 01:21 Weiyu Wang 阅读(127) 评论(0) 推荐(0) 编辑
摘要: class Solution { public int findPeakElement(int[] nums) { for(int i=0;i0&&nums[i]>nums[i-1])&&(i==nums.length-1||inums[i+1])) return i; return -1; } } 阅读全文
posted @ 2017-10-24 01:20 Weiyu Wang 阅读(96) 评论(0) 推荐(0) 编辑
摘要: ph 阅读全文
posted @ 2017-10-24 01:09 Weiyu Wang 阅读(218) 评论(0) 推荐(0) 编辑
摘要: ph 阅读全文
posted @ 2017-10-24 01:07 Weiyu Wang 阅读(91) 评论(0) 推荐(0) 编辑
摘要: ph 阅读全文
posted @ 2017-10-24 01:07 Weiyu Wang 阅读(101) 评论(0) 推荐(0) 编辑
摘要: ph 阅读全文
posted @ 2017-10-24 01:06 Weiyu Wang 阅读(77) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 22 下一页