How to Print Bottom View of a Binary Tree.

Here is the Code:

 class Program
    {
        static void Main(string[] args)
        {

How to Print Left view of a Binary tree

Here is the code:

 class Program
    {
        static void Main(string[] args)
        {

How to Print Spiral Order of a Binary Tree in C#

Here is the Code:

 class Program
 {
        static void Main(string[] args)
        {
         //   This Solution is written by me and is not completely tested. Please comment if you found any alternative solutions or any enhancement to my solution.
            BSTnode n = new BSTnode(5);

How to remove duplicates from a string in C#

Here is the code:

class Program
    {
        static void Main(string[] args)
        {
               
            Console.WriteLine(RemoveDuplicates("ajayreddy    tutorials"));
           

How to check if two Binary trees are identical or not in C#

Here is the code:
    class Program
    {
        static void Main(string[] args)
        {       
            BSTnode n = new BSTnode(5);

How to Display Binary Search Tree Nodes data level by level in C#

Here is the code:

class Program
    {
        static void Main(string[] args)
        {
            BSTnode n = new BSTnode(5);
            n.add(2);
            n.add(7);
            n.add(3);
            n.add(1);
            n.add(6);
            n.add(8);
            displayBST(n);
        }
        public static void displayBST(BSTnode n)
        {

How to create Binary Search Tree in C#

Binary Search tree is a collection of nodes where each node has a left node and right node. To Satisfy binary search tree all the left nodes data must be less than root nodes and all the right nodes data must be greater than root nodes.

Here is the code to create BST in C#:


class Program
    {

Popular Posts