Exemplo n.º 1
0
 public T_Node(int input)
 {
     data  = input;
     right = null;
     left  = null;
     root  = null;
 }
Exemplo n.º 2
0
 public T_Node()
 {
     right = null;
     root  = null;
     left  = null;
     data  = 0;
 }
Exemplo n.º 3
0
 public T_Node Min(T_Node current)
 {
     //current = startroot;
     while (current.left != null)
     {
         current = current.left;
     }
     return(current);
 }
Exemplo n.º 4
0
        public T_Node Max()
        {
            T_Node current = startroot;

            while (current.right != null)
            {
                current = current.right;
            }
            return(current);
        }
Exemplo n.º 5
0
 public void Dispaly(T_Node root1)
 {
     if (root1 == null)
     {
         return;
     }
     else
     {
         Dispaly(root1.left);
         Console.WriteLine(root1.data);
         Dispaly(root1.right);
     }
 }
Exemplo n.º 6
0
 public void Insert(int val)
 {
     if (startroot.data == 0)
     {
         startroot.data = val;
     }
     else
     {
         T_Node n    = new T_Node(val);
         T_Node temp = startroot;
         while ((temp.left != null) || (temp.right != null))
         {
             if (val < temp.data)
             {
                 if (temp.left == null)
                 {
                     break;
                 }
                 else
                 {
                     temp = temp.left;
                     continue;
                 }
             }
             else
             {
                 if (temp.right == null)
                 {
                     break;
                 }
                 else
                 {
                     temp = temp.right;
                     continue;
                 }
             }
         }
         if ((val > temp.data))
         {
             temp.right = n;
             n.root     = temp;
         }
         else
         {
             temp.left = n;
             n.root    = temp;
         }
     }
 }
Exemplo n.º 7
0
 public T_Node Delete(T_Node root, int key)
 {
     if (root == null)
     {
         return(root);
     }
     if (key < root.data)
     {
         root.left = Delete(root.left, key);
     }
     else if (key > root.data)
     {
         root.right = Delete(root.right, key);
     }
     else
     {
         if (root.left == null)
         {
             T_Node temp = root.right;
             root.data = temp.data;
             return(temp);
         }
         else if (root.right == null)
         {
             T_Node temp = root.left;
             root.data = temp.data;
             return(temp);
         }
         else
         {
             T_Node temp = Min(root.right);
             root.data = temp.data;
             if (temp.right == null && temp.left == null)
             {
                 if (temp.root.data < temp.data)
                 {
                     temp.root.right = null;
                 }
                 if (temp.root.data > temp.data)
                 {
                     temp.root.left = null;
                 }
             }
         }
     }
     return(root);
 }
Exemplo n.º 8
0
        public T_Node Search(int val)
        {
            T_Node current = startroot;

            while (current.data != val)
            {
                if (val < current.data)
                {
                    current = current.left;
                }
                else
                {
                    current = current.right;
                }
                if (current == null)
                {
                    return(null);
                }
            }
            return(current);
        }