示例#1
0
文件: Flights.cs 项目: vtozija/bazi
 private bool apendable(Flight f2)
 {
     if (this.parent == null || (this.end().CompareTo(f2.end()) < 0 && this.to == f2.from)) return true;
     return false;
 }