1,陣列的增加
1package
shuzu;23
public
class
shuzu
1011 nume[pos] =nums;
1213
for(int i = pos; i )
17return
nume; 18}
19public
static
void
main(string args) ;
2122 shuzu sz = new shuzu();//
宣告乙個物件
23 num=sz.insertonenum(num,3,3);
24for(int i=0;i)27}
28 }
執行是結果:2, 4, 5,3,1, 6,
2,刪除乙個數
1package
shuzu;23
public
class
shuzu 89
}10public
static
void
main(string args) ;
12 shuzu dz=new
shuzu();
13 dz.deleonenum(num,1);
14for(int i=0;i)17}
18 }
執行的結果是:4 5 1 6 0 0
3.找最大的數
1package
shuzu;23
public
class
shuzu 10}
11return
max;12}
1314
public
static
void
main(string args) ;
1617 shuzu fo = new
shuzu();
18int max = 0;
19 max =fo.findonenum(num);
20 system.out.print("最大數是=" +max);21}
22 }
執行的結果是:最大數是=6
4,找出陣列中不同的數
1package
shuzu;23
public
class
shuzu
1617
18if(i==j)22}
2324}25
2627
public
static
void
main(string args) ;
29 shuzu fz=new
shuzu();
30fz.findnuml(nums);31}
32 }
輸出的結果:1 3 4 5 65
一維數字陣列,拼接獲取最大數字
要求 給定一維數字陣列,拼接獲取最大數字,如 4345,43,4,98,9 9984434543 arr 43,2,12,46,9,98,99,54 newarr arr array map strval arr len count arr 對陣列進行排序 for i 0 i len i 銷毀已拼接...
最大陣列連續子向量的最大和
最近研究最大陣列,稍微總結一下,以後繼續補充 find the contiguous subarray within an array containing at least one number which has the largest sum.for example,given the arr...
在乙個陣列中找差值最大數對,輸出最大差值
題目 乙個陣列,找乙個數對,使得兩個數對之差最大,並且較大數在較小數之前,要求時間複雜度為o n 解決方法 動態規劃,額外定義兩個陣列,temp max temp i 用來儲存,從開始到下標為i的元素位置,最大數對之差 max i 用來儲存,從開始到下標為i的元素位置,最大值 i 0時 temp i...