#include "stdio.h"
创新互联凭借在网站建设、网站推广领域领先的技术能力和多年的行业经验,为客户提供超值的营销型网站建设服务,我们始终认为:好的营销型网站就是好的业务员。我们已成功为企业单位、个人等客户提供了做网站、成都网站设计服务,以良好的商业信誉,完善的服务及深厚的技术力量处于同行领先地位。
#include "algorithm.h"
#define M 10
#define N 10
int com(int *a, int *b, int *c)
{
int i, j;
int count = 0;
for (i = 0; i M; i++)
c[i] = a[i];
for (j = 0; j 链岁 N; j++)
c[i++] = b[j];
sort(c, c + (M + N));
for (i = 0; i M + N - 1; i++)
{
if (c[i] == c[i + 1])
{
count++;
for (j = i; j M + N - 1; j++)
c[j] = c[j + 2];
}
}
return count;
}
int main(void)
{
int a[M] = { 3, 6, 7, 18, 23, 33, 35, 43, 48, 78 };
int b[N] = { 2, 7, 13, 21, 33, 37, 48, 50, 58, 67 };
int c[M + N] = { 0 };
int count = 0, i;
count = com(a, b, c);
for (i = 0; i M + N - 2 * count; i++)
printf("%d "贺唤戚禅陵, c[i]);
printf("\ncount=%d ", count);
return 0;
}
1. java中两个int型数组怎么合并啊
用System.arraycopy()就能将这两个数组合并颂亏老成一个,具体做法看下面程序
public static void main(String[] agrs){
int a[] = {1,2,3,4};
int b[] = {5,6,7,8};
int c[]=null;
c=new int[a.length+b.length];
System.arraycopy(a,0,c,0,a.length);
System.arraycopy(b,0,c,a.length,b.length);
for(int i=0;ic.length;i++){
System.out.println(c[i]);
}
}
2. 如何将两个数组先合并然后再进行排序
我理解的意思是:
1.String[] m={1,2,3};
String[] n={1,3,5};
合并后:String mn={1,2,3,1,3,5};
如果是这样:就是循环两个数组,把数据存到一个新的数组里即可。
2.String[] m={1,2,3};
String[] n={1,3,5};
合空坦并后:String mn={1,1,2,3,3,5};
如果是这样:就是循环两个数组,把数据存到一个新的数组里,再进行排序即可。
3. 如何将数组的两个数字合并成一个
import java.util.Arrays;
Java中如何把两个数组合并为一个
public class gog {
public static void main(String[] args) {
String [] str1 = {"J","a","v","a","中"};
String [] str2 = {"如","何","把","两","个","数","组","合","野升并","为","一","个"};
int strLen1=str1.length;保存第一个数组长度
int strLen2=str2.length;保存第二个数组长度
str1= Arrays.copyOf(str1,strLen1+ strLen2);扩容
System.arraycopy(str2, 0, str1, strLen1,strLen2 );将第二个数组与第一个数组合并
System.out.println(Arrays.toString(str1));输出数组
}
}
4. c语言怎么合并两个数组
int main() {
char a[] = "123456";
char b[] = "abcde";
int buflen = strlen(a) + strlen(b);
char *p = (char*)malloc(buflen + 1);
memset(p, 0, buflen);
printf("%d\n", buflen);
strcpy(p, a);
strcat(p, b);
printf("%s\n", p);
free(p);
}
C的数组抄在创建后不可变得,因此数组合并的思想就是把数组塞到一个足够大的空间知里形成新数组。
上面道的函数是比较简单的合并方法
5. java怎么将2个数组的数据合并
concat()方法是对字符串的操作,不是对整数或数组。
concat()用法:String a="abc";String b="edf";String c=a.concat(b);c的值为“abcdef"数组可以用for循环合并: public static void main(String[] args){ int a[]={1,7,9,11,13,15,17,19}; int b[]={2,4,6,8,10}; int aL=a.length; int bL=b.length; int lenght=aL+bL; int[] c=new int[lenght]; for(int i=0;i
6. 两组数组合并怎么输出
程序 参考(可以不用数组c的) public static void main(String[] args) { int[] a=new int [] {10,20,30}; int[] b=new int[] {40,50,60}; int []c=new int[a。
length b。length]; int i,j; for (i=0; i c[i]=a[i]; for (j=0; j length; i ,j ) c[i]=b[j]; for (i=0; i System。
out。println(c[i]);}。
int main() {
char a[] = "123456";
char b[] = "abcde";
int buflen = strlen(a) + strlen(b);
char *p = (char*)malloc(buflen + 1);
memset(p, 0, buflen);
printf("%d\n", buflen);
strcpy(p, a);
strcat(p, b);
printf("%s\n", p);
free(p);
}
C的数组在创建后不可变得,因此数组合并的思想就是把数组塞到一个足够大的空间里形成新嫌余数组。
上面的函数是比较简单的合睁者誉并方悉段法