鱼C论坛

 找回密码
 立即注册
查看: 826|回复: 0

[学习笔记] leetcode 27. Remove Element

[复制链接]
发表于 2019-8-29 04:37:42 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
  1. Given an array nums and a value val, remove all instances of that value in-place and return the new length.

  2. Do not allocate extra space for another array, you must do this by modifying the input array in-place with O(1) extra memory.

  3. The order of elements can be changed. It doesn't matter what you leave beyond the new length.

  4. Example 1:

  5. Given nums = [3,2,2,3], val = 3,

  6. Your function should return length = 2, with the first two elements of nums being 2.

  7. It doesn't matter what you leave beyond the returned length.
  8. Example 2:

  9. Given nums = [0,1,2,2,3,0,4,2], val = 2,

  10. Your function should return length = 5, with the first five elements of nums containing 0, 1, 3, 0, and 4.

  11. Note that the order of those five elements can be arbitrary.

  12. It doesn't matter what values are set beyond the returned length.
  13. Clarification:

  14. Confused why the returned value is an integer but your answer is an array?

  15. Note that the input array is passed in by reference, which means modification to the input array will be known to the caller as well.

  16. Internally you can think of this:

  17. // nums is passed in by reference. (i.e., without making a copy)
  18. int len = removeElement(nums, val);

  19. // any modification to nums in your function would be known by the caller.
  20. // using the length returned by your function, it prints the first len elements.
  21. for (int i = 0; i < len; i++) {
  22.     print(nums[i]);
  23. }
复制代码

  1. class Solution {
  2.     public int removeElement(int[] nums, int val) {
  3.         
  4.         int len = nums.length;
  5.         
  6.         for(int i = 0; i< len ; i++){
  7.             
  8.             if(nums[i] == val){
  9.                
  10.                 int j = i;
  11.                
  12.                 while(j < len-1 && nums[j] == val){
  13.                     
  14.                     j++;
  15.                 }
  16.                
  17.                 int temp = nums[i];
  18.                
  19.                 nums[i] = nums[j];
  20.                
  21.                 nums[j] = temp;
  22.             }
  23.             
  24.             
  25.         }
  26.         
  27.         int count = 0;
  28.         
  29.         for(int i = 0 ; i < len; i++){
  30.             
  31.             if(nums[i] != val){
  32.                
  33.                 count++;
  34.             }
  35.         }
  36.         
  37.         return count;
  38.         
  39.     }
  40. }
复制代码

本帖被以下淘专辑推荐:

想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-5-5 14:02

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表