leetcode字节跳动题库
AXIMI
这个作者很懒,什么都没留下…
展开
-
【leetcode字节跳动题库】121. Best Time to Buy and Sell Stock
提交代码class Solution { public int maxProfit(int[] prices) { if(prices==null||prices.length==0) return 0; int res=0,in=prices[0],out=prices[0]; for(Integer price:prices) { ...原创 2020-02-27 11:42:32 · 774 阅读 · 2 评论 -
【leetcode字节跳动题库】25. Reverse Nodes in k-Group
和使用三个指针翻转链表的思路差不多。提交代码class Solution { public ListNode reverseKGroup(ListNode head, int k) { ListNode p=head; for(int i=0;i<k;i++) { if(p==null) return head; p=p.next; ...原创 2020-02-27 11:32:48 · 494 阅读 · 0 评论 -
【leetcode字节跳动题库】11. Container With Most Water
提交代码class Solution { public int maxArea(int[] height) { int maxLeft=0,maxRight=0,curArea=0,maxArea=0; for(int i=0;i<height.length;i++) { if(height[i]<maxLeft) continue...原创 2020-02-26 18:04:51 · 385 阅读 · 0 评论 -
【leetcode字节跳动题库】42. Trapping Rain Water
用个单调栈提交代码class Solution { public int trap(int[] height) { Stack<Integer> hStack=new Stack<Integer>(); Stack<Integer> pStack=new Stack<Integer>(); int...原创 2020-02-26 17:49:38 · 396 阅读 · 0 评论