testchapter9.java
来自「国外的数据结构与算法分析用书」· Java 代码 · 共 16 行
JAVA
16 行
import stacks.*;
import dynamic_model.*;
/** This class tests the classes of Chapter 7. */
public class TestChapter9
{
public static void main(String args[]) throws Exception
{
TestListStack.main(null);
System.out.println();
ParenthesisMatching.main(null);
System.out.println();
Root.main(null);
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?