首页 > 代码库 > 往一个已知数组中插入一个元素
往一个已知数组中插入一个元素
package ch07;
import java.util.Arrays;
/**
* Created by liwenj on 2017/7/19.
*/
public class test2 {
public static void main(String[] args) {
char[] a = new char[]{‘b‘, ‘c‘, ‘e‘, ‘f‘, ‘g‘};
// Arrays.sort(a);
// System.out.println(a);u
char d = ‘d‘;
char[] temp = new char[a.length + 1];//定义一个新数组存储,temp数组比a多一个元素
for (int i = 0; i < a.length; i++) {
temp[i] = a[i];//{‘b‘, ‘c‘, ‘e‘, ‘f‘, ‘g‘}//temp[i]就是a[i]
}
temp[temp.length - 1] = d;//把d放到temp中的最后一个
//找插入位置
int index = 0;
//1.一直数组中最大的在倒数第一位,如果插入字符比原来字符中最大还要大
if (d > temp[temp.length - 2]) {
index = temp.length - 1;
} else if (d < temp[0]) { //2.如果插入字符比原来字符第一个还要小
index = 0;
}
//3.普通情况
for (int i = 0; i < temp.length - 2; i++) {
if (d > temp[i] && d < temp[i + 1]) {
index = i + 1;
break;
}
}
System.out.println(index);
//移动元素
for (int j = temp.length - 2; j >=index; j--) {
temp[j + 1] = temp[j];//往后挪
}
temp[index] = d;
System.out.println(temp);
}
}
往一个已知数组中插入一个元素
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。