填空题

顺序存储方法是把逻辑上相邻的结点存储在物理位置________的存储单元中。

【参考答案】

相邻
<上一题 目录 下一题>
热门 试题

单项选择题
下面程序的正确输出是( )。 public class Hello public static void main(string args[]) int count,xPos=25: for(count=1;count<=10;count++) if(count==5) Break: system.out.println(count); xPos+=10:
A.1 2 3 4
B.1 3 4
C.编译错误
D.以上都不正确
单项选择题
请阅读下面程序 public class ThreadTest public static void main(String args[])throws Exception int i=0: Hello t=new Hello(); _________; while(true) System.out.println( Good Morning +i++); if(i==2&&t.isAlive()) System.out.println( Main waiting for Hello! ); t.join(); 等待t运行结束 if(i==5)break;) class Hello extends Thread int i; public void run() while(true) System.out.println( Hello +i++); if(i==5)break; 为使该程序正确执行,下画线处的语句应是( )。
A.sleep()
B.yield()
C.interrupt()
D.start()
相关试题
  • 下面程序段是创建一个Date类的对象并把它串...
  • Applet生命周期方法有init(),_____...
  • 编译JavaApplet源程序文件产生的字节码文件...
  • 关于文件名的处理中,测试当前文件是否目录...
  • Java语言的循环语句包括for语句、while语句...