您好,登錄后才能下訂單哦!
這篇文章主要介紹了java稀疏數組的代碼怎么寫的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇java稀疏數組的代碼怎么寫文章都會有所收獲,下面我們一起來看看吧。
當一個數組中大部分元素為0,或者為同一個值的數組時,可以用稀疏數組來保存該數組
稀疏數組,記錄一共有幾行幾列,有多少個不同值
把具有不同值的元素和行里了及值記錄在一個小規模的數組中,從而縮小程序的規模!
我們定義一下原始數組:
原始數組如下: 0 0 3 0 0 0 0 0 0 4 0 0 0 5 0 0 0 6 0 0 0 0 0 0 0
可以看出,這個數組大部分都是0,我們可以把這個數組轉化為稀疏數組
稀疏數組第一行存放的分別是總行數,總列數和存放的數據總數
//因為數組的下標是從0開始的,所以可以看出,第一行的第三個數,用下標表示,實際上是數組[0][2] 5 5 4 0 2 3 1 4 4 2 3 5 3 2 6
下面看一下如何實現這種稀疏數組,又是如何把稀疏數組還原成
代碼示例:
package com.ling.array; public class ArrayDemo11 { public static void main(String[] args) { int[][] array=new int[5][5]; array[0][2]=3; array[1][4]=4; array[2][3]=5; array[3][2]=6; System.out.println("原始數組如下:"); for (int[] ints : array) { for (int anInt : ints) { System.out.print(anInt+" "); } System.out.println(); } System.out.println("行"+"\t"+"列"+"\t"+"存放的數據"+"\t"); //稀疏數組第一行存放的分別是總行數,總列數和存放的數據總數 // System.out.println(5+"\t"+5+"\t"+4); // System.out.println(1+"\t"+3+"\t"+3); // System.out.println(2+"\t"+5+"\t"+4); // System.out.println(3+"\t"+4+"\t"+5); // System.out.println(4+"\t"+3+"\t"+6); int sum=0; for (int i = 0; i <5 ; i++) { for (int j = 0; j <5 ; j++) { if (array[i][j]!=0){ sum++; } } } int[][] arr2=new int[sum+1][3]; //這個二維數組的第一行是確定的 arr2[0][0]=5; arr2[0][1]=5; arr2[0][2]=sum; int count=0; for (int i = 0; i < array.length; i++) { for (int j = 0; j < array[i].length; j++) { if (array[i][j]!=0){ count++; arr2[count][0]=i; arr2[count][1]=j; arr2[count][2]=array[i][j]; } } } System.out.println("輸出稀疏數組"); for (int[] ints : arr2) { for (int anInt : ints) { System.out.print(anInt+" "); } System.out.println(); } } }
輸出:
輸出原始的數組
0 0 0 0 0 0 0 0 0 0 0
0 0 1 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0
0 0 2 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0
有效值的個數:2
輸出稀疏數組:
11 11 2
1 2 1
3 2 2
=========分========割==========線=============
我們也可以把稀疏數組進行一個還原
打印還原后的數組
0 0 0 0 0 0 0 0 0 0 0
0 0 1 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0
0 0 2 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0
0 0 0 0 0 0 0 0 0 0 0
關于“java稀疏數組的代碼怎么寫”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“java稀疏數組的代碼怎么寫”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。