此代码应实现排序。
我有 3 个错误:
“StdRandom 无法解析”、
“StdOut 无法解析”、
“插入无法解析”。
可能有一些库要导入?
public class randomDoubles
{
public static void main(String[] args)
{
int N = Integer.parseInt(args[0]);
Double[] a = new Double[N];
for(int i = 0; i < N; i++)
a[i] = StdRandom.uniform(); // error: StdRandom cannot be resolved
Insertion.sort(a); // error: Insertion cannot be resolved
for (int i = 0; i < N; i++)
StdOut.println(a[i]); // error: StdOut cannot be resolved
}
}