/*
*往有序数据中插入新的元素
*author:zhong_sl
*/
public class Test {
public static void main(String[] args) {
int a[] = {0,1,2,3,5};
int b = 4;
int length = a.length;
int tempArr[]=new int[length+1];
for(int i = 0;i<a.length;i++){
tempArr[i]=a[i];
if(a[i]>b)
{
for(int j=length-1;j>=i;j--)
{
tempArr[j+1]=a[j];
}
tempArr[i]=b;
}
}
a=tempArr;
for(int i=0;i<tempArr.length;i++){
System.out.println(a[i]);
}
}
}