熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Java編程 >> Java核心技術 >> 正文

Java 刪除數組中重復的元素

2022-06-13   來源: Java核心技術 

  我是將數組封裝為類的 其中方法說明getmax(){   //計算數據個數getData(int index)得到index的元素setData(int indexint b)設置索引為index的元素值為b

  public void noDup(){

  //循環嵌套將重復的設為 int max = thisgetmax()

  for(int i = i < maxi ++){ for(int j = i +

  j < maxj ++ ){ if (thisgetData(i) == thisgetData(j)) { thissetData(i }

  }

  //刪除value為x的所有項public void dele(int x){ int i = int max = thisgetmax()

  while(!(thisgetData(i) == )){ if (thisgetData(i) == x) { for(int j = i

  j < maxj ++){ thissetData(j thisgetData(j + ))

  }

  }else{ i++}


From:http://tw.wingwit.com/Article/program/Java/hx/201311/26961.html
  • 上一篇文章:

  • 下一篇文章:
  • 推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.