首页 > 其他 > 详细

leetcode 27. 移除元素 【时间击败100.00%】【内存击败84.67%】

时间:2019-09-30 22:45:41      阅读:110      评论:0      收藏:0      [点我收藏+]
 1  public int removeElement(int[] nums, int val) {
 2         int last = nums.length - 1;
 3         for (int i = 0; i <= last && last >= 0; i++) {
 4             while (last >= 0 && nums[last] == val) last--;
 5             if (last >= 0 && i < last && nums[i] == val) {
 6                 nums[i] = nums[last];
 7                 last--;
 8             }
 9         }
10         return last + 1;
11     }

 

leetcode 27. 移除元素 【时间击败100.00%】【内存击败84.67%】

原文:https://www.cnblogs.com/towerbird/p/11614345.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!