如何在不使用任何集合(即Arraylist或Set等)的情況下避免將重複的整數添加到整數數組中?在整數數組中避免重複的整數
回答
如果你的問題是返回一個Integer[]
,而不是任何其他集合,你可以使用,無論一個Set<Integer>
private
LY避免重複值,然後返回Set<Integer>.toArray(new Integer[0])
。
這是最簡單的方式恕我直言...
例如:
private Set<Integer> intSet = new HashSet<Integer>();
public void setIntArray(Integer[] i){
intSet = new HashSet<Integer>(Arrays.asList(i));
}
public Integer[] getIntArray(){
return intSet.toArray(new Integer[0]);
}
- 寫,增加值到陣列的方法。
- 添加前,如果值存在,請掃描數組。
- 跳過添加如果它存在。
- 僅限使用將值添加到數組的方法。
- 理想地將數組和方法捆綁在一個類中。 Voila:封裝!
您可以創建另一個數組,我們稱之爲exists
,boolean類型。然後每次向主列表添加一個整數時,檢查是否爲exists[newNumber]
。如果該值爲true,則它已經存在,否則將該數字添加到整數數組並將布爾值設置爲true。
如果數字範圍有一個小的界限,此解決方案運作良好。請注意,我的示例還假定整數是正數。一些優化是使用long []數組並將每個位用作標誌。
首先假設數組是一個緩衝區並有額外的空間。
簡單地遍歷它檢查每個值。如
for(int i=0; i<endpointer &&i < buffer.length ; i++){
if(buffer[i]==valueToPutInArray){
valueExists=true;
break;
}
}
if(!valueExists) {
buffer[endpointer++]=valueToPutInArray;
}
如果數組必須重新分配,那麼你必須做這樣的事情:
int i=0;
Integer[] outputArray = new Integer[buffer.length+1];
for(Integer value : buffer) {
if(value==valueToPutInArray){
valueExists=true;
break;
}
outputArray[i++]=value;
}
if(!valueExists) {
outputArray[i]=valueToPutInArray;
}
我建議你首先執行Arrays.Sort(INT [])。然後使用Arrays.binarySearch(int [],int)來檢查元素是否存在。
據的Javadoc:
/**
* Sorts the specified array of ints into ascending numerical order.
* The sorting algorithm is a tuned quicksort, adapted from Jon
* L. Bentley and M. Douglas McIlroy's "Engineering a Sort Function",
* Software-Practice and Experience, Vol. 23(11) P. 1249-1265 (November
* 1993). This algorithm offers n*log(n) performance on many data sets
* that cause other quicksorts to degrade to quadratic performance.
*
* @param a the array to be sorted
*/
public static void sort(int[] a) {
sort1(a, 0, a.length);
}
和二分查找:
/**
* Searches the specified array of ints for the specified value using the
* binary search algorithm. The array must be sorted (as
* by the {@link #sort(int[])} method) prior to making this call. If it
* is not sorted, the results are undefined. If the array contains
* multiple elements with the specified value, there is no guarantee which
* one will be found.
*
* @param a the array to be searched
* @param key the value to be searched for
* @return index of the search key, if it is contained in the array;
* otherwise, <tt>(-(<i>insertion point</i>) - 1)</tt>. The
* <i>insertion point</i> is defined as the point at which the
* key would be inserted into the array: the index of the first
* element greater than the key, or <tt>a.length</tt> if all
* elements in the array are less than the specified key. Note
* that this guarantees that the return value will be >= 0 if
* and only if the key is found.
*/
public static int binarySearch(int[] a, int key) {
return binarySearch0(a, 0, a.length, key);
}
而且一個你知道的元素中是否存在與否,剩下的就是容易讓你。
解決方案取決於您的要求。如果你有一個小陣列大小(n < 10^6),在每次插入時掃描數組就足夠了,但如果你有一個大陣列和頻繁插入,我會提出一個不同的解決方案。
在每次插入時掃描陣列需要複雜度爲O(n)。對於小數字,開銷是可以忽略的,但隨着數組大小的增加,每次插入的遍歷效率不高。
如果您需要性能,並且內存不是您的約束,您可以採用布爾數組並初始化所有元素爲false。然後每當你得到一個數字時,在布爾數組中建立其索引值爲true,並且在插入時檢查被插入的元素的索引號是否爲布爾值。
這裏是初始化布爾數組的代碼(初始化它會使所有元素假):
boolean [] duplicateValuesArray = new boolean[Integer.MAX_VALUE];
這裏是一個插入所述陣列中的元件的功能:
public void insertElement(int elementToBeInserted) {
if(!duplicateValuesArray[elementToBeInserted]) //check if element already in array
duplicateValuesArray[elementToBeInserted] = true;
mainArray[index++] = elementToBeInserted;
}
在這樣,每當你得到一個數字時,布爾數組中該索引的值被設置爲true,並且在插入時,每次檢查索引時,如果值爲true,那個元素存在於數組中,不要插入它。
的這種複雜性要低得多,如果你有一個大的mainArray(N> 10^6),你有頻繁的插入。這是因爲初始化一個布爾數組是一次複雜度,之後檢查布爾數組中的元素和插入元素的操作只是在不變的時間內進行。
因此,有效的複雜性被簡化爲初始化布爾數組。即使在內存佔用方面,我也不介意,因爲布爾原語只佔用內存中的一位。
P.S:基本上它是一種內存vs性能的折衷,這是隨處可見的Universal Computing Trade off。
+1,用於探索這種情況下的複雜性和性能 –
- 1. 避免二維數組中的重複?
- 2. 避免重置整數變量
- 3. 防止數組中的重複整數
- 4. 爲了避免在C++中重複數組中的數字
- 5. 避免在遞歸內部數組中的重複數據
- 6. 如何避免數組數組中的重複值?
- 7. 重複整數
- 8. 避免插入子數組重複項
- 9. SQL:避免重複數據
- 10. 避免重複鍵/數據
- 11. 避免重複數據PostgreSQL
- 12. 整型數組中的Java重複項
- 13. 在整數數組中計數重複的元素
- 14. 如何避免重複數組push()函數中的字段?
- 15. 避免數據表中的重複值
- 16. 避免jQuery中的函數重複
- 17. 查找偶數次重複數組中的整數,其餘整數重複奇數次
- 18. 抽象函數/避免函數重複
- 19. Golang(初學者):避免重複函數來處理字符串或整數
- 20. BPEL:將整數數組複製到另一個整數數組
- 21. 在數組中查找連續的重複整數
- 22. 在帶有邊界的整數數組中找到重複項
- 23. 修改整數數組中的整數
- 24. 整個數組的重複代碼
- 25. 如何避免整數除法警告?
- 26. 整數數組整數VB.NET
- 27. 從C++中的數組中刪除重複的整數
- 28. 如何避免在字符串數組中重複輸入?
- 29. 避免在數組列表中插入重複
- 30. 整潔:避免
您必須(1)與數組一起使用另一個集合(即Hash)或(2)每次添加一個元素時執行線性搜索。 –
你不能使用'任何集合,即Arraylist或Set'?或者你只需要返回一個整數數組? – davioooh
這是[標籤:家庭作業]?如果是這樣,那麼標記它是有利的。 –