コード例 #1
0
ファイル: ColumnHeader.cs プロジェクト: pivl/pentomino
        public void Add(Node node)
        {
            node.header = this;

            // The node being added points down to the header
            node.down = this;

            node.up = this.up;

            this.up.down = node;
            this.up = node;

            count++;
        }
コード例 #2
0
ファイル: Node.cs プロジェクト: pivl/pentomino
 public Node()
 {
     left = right = up = down = this;
 }