是的,这是家庭作业。简单地说,因为我的教授不是最擅长措辞,
我得到了一个文本文件
11 -5 -4 -3 -2 -1 6 7 8 9 10 11
8 -33 -22 -11 44 55 66 77 88
这是作为 SortedArrays.txt 给出的
第一行是数组 1,第二行是数组 2,每行的第一个 int 是数组的大小,所以:
int a[] = new int[11]
int b[] = new int[8]
我的第一个问题是将它读入程序,我假设作为参数运行,但我的问题是在每一行之间解密并加载数组。
我相信我有一个比较 a 和 b 元素并加载到 c 中的好方法,但是有人可以看一下吗?
再次感谢这个网站,我四处搜索并看到了这个程序,但元素已经从文本文件中给出或没有给出。
// ************************************************************
// MergeArray.java
//
// Written by: Brandon Pham
//
//
//
//
// Homework 6
// ************************************************************
import java.io.*;
import java.util.*;
public class MergeArray {
String arrayfile = "SortedArrays.txt";
MergeArray(String arrayfile){
try {
Scanner arrayload = new Scanner(File(arrayfile));
}
catch (FileNotFoundException e) {
System.out.printf("File %s not found, exiting!",
arrayfile);
System.exit(0);
}
int[] a = new int[arrayload.nextint()];
int[] b = new int[arrayload.nextLine()];
int[] c = new int[a.length+b.length];
}
public static void merge(int[]a, int[]b, int[]c) {
int i=0,j=0,k=0;
int alength = a.length;
int blength = b.length;
while (k<c.length){
if (a[i] < b[j]){
c[k] = a[i];
k++;
i++;
}
if (a[i] == b[j]){
c[k]=a[i];
c[k++]=b[j];
i++;
j++;
if (i+1>a.length){
c[k]=b[j];
k++;
j++;
}
if (j+1>b.length){
c[k]=a[i];
k++;
i++;
}
else{
c[k] = b[j];
k++;
j++;
}
}
}