往數組指定位置添加數值

public class test { public static int[] insertArray(int[] arr,int index,int value){ //新建數組,對原數組擴容 int newarr []= new int [arr.length+1]; //將原數組數據賦值給新數組 for (int i = 0; i < a
相關文章
相關標籤/搜索