/* * (有向)图的遍历算法模板 */ package dsa; public abstract class GraphTraverse { //常量 final static int UNDISCOVERED = 0;//尚未被发现的顶点 final static int DISCOVERED = 1;//已被发现的顶点 final static int VISITED = 2;//已访问过的顶点 final static int UNKNOWN = 0;//未知边 final stati
房间占用经理
圈子CI状态:
适用于酒店的客房入住优化工具。
特征
• A working algorithm implemented in Java 11
• Progress trackered through Git commits
• Minimal readme explaining how to run the project and tests
• Tests/TDD
• Clean code structure and formatting
科技类
Room Ocuppancy