Horje
Compare trees Code Example
Compare trees
public bool IsEqual(Node first, Node second)
{
    if (first == null && second == null) return true;

    if(first != null && second != null)
    {
      return first.data == second.data && 
          IsEqual(first.rightChild,second.rightChild) &&
          IsEqual(first.leftChild,second.leftChild);
    }
    return false;
}


// Node structure

public class Node
{
    private int data;
    private Node leftChild;
    private Node rightChild;
    public Node(int data)
    {
      	this.data = data;
    }
}




Csharp

Related
checkbox value unchecked after return view model Code Example checkbox value unchecked after return view model Code Example
Comapre Binary Trees Code Example Comapre Binary Trees Code Example
stop flickering Code Example stop flickering Code Example
C# int to byte Array Code Example C# int to byte Array Code Example
c# datetime get number of week Code Example c# datetime get number of week Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
9