예제 #1
0
파일: Bin Tree.cs 프로젝트: Beraliv/Csharp
 public ThreadedNode(Node node)
 {
     this.key = node.Key;
     this.level = node.Level;
     this.left = this.right = null;
     this.is_threaded_left = this.is_threaded_right = false;
 }
예제 #2
0
파일: Bin Tree.cs 프로젝트: Beraliv/Csharp
        public ThreadedNode(int level)
        {
            this.level = level;

            this.key = double.PositiveInfinity;
            this.left = this.right = null;
            this.is_threaded_left = this.is_threaded_right = false;
        }
예제 #3
0
파일: Bin Tree.cs 프로젝트: Beraliv/Csharp
        public ThreadedNode(double key, int level)
        {
            this.key = key;
            this.level = level;

            this.left = this.right = null;
            this.is_threaded_left = this.is_threaded_right = false;
        }
예제 #4
0
파일: Bin Tree.cs 프로젝트: Beraliv/Csharp
        public ThreadedNode(bool is_threaded_left, bool is_threaded_right)
        {
            this.is_threaded_left = is_threaded_left;
            this.is_threaded_right = is_threaded_right;

            this.key = double.PositiveInfinity;
            this.left = this.right = null;
            this.level = -1;
        }
예제 #5
0
파일: Bin Tree.cs 프로젝트: Beraliv/Csharp
 private void right_re_build(ThreadedNode th_node)
 {
     if (th_node.right != null)
     {
         if (!th_node.right.IsThreadedRight)
             right_re_build(th_node.right);
     }
     else
     {
         th_node.IsThreadedRight = true;
         th_node.right = p_old;
     }
     p_old = th_node;
     if (!th_node.IsThreadedLeft)
         right_re_build(th_node.left);
 }
예제 #6
0
파일: Bin Tree.cs 프로젝트: Beraliv/Csharp
 private void re_build()
 {
     ThreadedNode new_root = new ThreadedNode(true, true);
     new_root.left = Root;
     new_root.right = new_root;
     root = new_root;
     p_old = Root;
     left_re_build(Root.left);
     p_old = Root;
     right_re_build(Root.left);
     p_old = null;
 }
예제 #7
0
파일: Bin Tree.cs 프로젝트: Beraliv/Csharp
 private void build(ref ThreadedNode th_node, Node node)
 {
     if (node != null)
     {
         th_node = new ThreadedNode(node);
         build(ref th_node.left, node.left);
         build(ref th_node.right, node.right);
     }
     else
         th_node = null;
 }
예제 #8
0
파일: Bin Tree.cs 프로젝트: Beraliv/Csharp
 public ThreadedBinTree(BinTree bin_tree)
 {
     if (bin_tree == null || bin_tree.Root == null)
         root = null;
     else
     {
         root = new ThreadedNode(bin_tree.Root);
         max = bin_tree.max;
         build(ref Root.left, bin_tree.Root.left);
         build(ref Root.right, bin_tree.Root.right);
         re_build();
     }
 }