domino.java
来自「java版的数据结构的完全代码 免费提供了 学习数据结构的请下载」· Java 代码 · 共 15 行
JAVA
15 行
// Introduced in Chapter 2/** A domino. */public interface Domino { /** Swap the left and right numbers on the Domino. */ public void flip(); /** Return the number on the left side of the Domino. */ public int getLeft(); /** Return the number on the right side of the Domino. */ public int getRight();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?