zoukankan      html  css  js  c++  java
  • Leetcode: Remove Elements

    Given an array and a value, remove all instances of that value in place and return the new length.
    
    The order of elements can be changed. It doesn't matter what you leave beyond the new length.

    一次性通过的,比较顺利,从读题到编写到检查到通过,14分50秒,我在不断进步中,相信经过一段时间联系,这种题可以一眼就写出来,不超过5分钟。

    这道题应该说方法跟 Remove Duplicates from sorted Array挺类似的

    My Solution: 

     1 public class Solution {
     2     public int removeElement(int[] A, int elem) {
     3         int count = 0;
     4         for(int i=0; i<A.length; i++){
     5             if(A[i] != elem){
     6                 A[count] = A[i];
     7                 count++;
     8             }
     9         }
    10         return count;
    11     }
    12 }

    再贴个另外两个人的solution,以便对照参考,比较优劣:

    Solution 1: 这个想法有点曲折

     1 public class Solution {
     2     public int removeElement(int[] A, int elem) {
     3         // Start typing your Java solution below
     4         // DO NOT write main() function
     5         int i=0, j=A.length-1;
     6         
     7         while(i<=j){
     8             if(A[i]==elem)
     9                 swap(A,i,j--);
    10             else 
    11                 i++;
    12         }
    13         return j+1;
    14     }
    15     
    16     public void swap(int[] A,int i, int j){
    17         int temp = A[i];
    18         A[i] = A[j];
    19         A[j] = temp;
    20     }
    21 }

    Solution 2: 跟我的想法一致

     1 public class RemoveElement {
     2     public int removeElement(int[] A, int elem) {
     3         // Start typing your Java solution below
     4         // DO NOT write main() function
     5         if (A.length == 0) {
     6             return 0;
     7         }
     8         int counter = 0;
     9         for (int i = 0; i < A.length; i++) {
    10             if (A[i] != elem) {
    11                 A[counter] = A[i];
    12                 counter++;
    13             }
    14         }
    15         return counter;
    16 
    17     }
    18 }
  • 相关阅读:
    新博客第一篇,字符串 Unicode 转义
    C# 泛型方法的类型推断
    一个改进 LRU 算法的缓冲池 update 2013.7.15
    C# 判断类型间能否隐式或强制类型转换,以及开放泛型类型转换 update 2015.02.03
    C# 词法分析器(三)正则表达式
    java面试题(二)
    Map的迭代
    Spring aop切面插入事物回滚
    Log4J的配置
    js中将yyyyMMdd格式的日期转换
  • 原文地址:https://www.cnblogs.com/EdwardLiu/p/3703444.html
Copyright © 2011-2022 走看看