public Node getMinOfSubTree(Node n)
{
if (n.Left == null && n.Right == null) return n;
Node t = n;
while (t.Left != null)
{
t = t.Left;
}
return t;
}
Subscribe to:
Post Comments (Atom)
-
All WMI Class Names list : - Name ...
-
Functions are loosely typed in javascript, we are able to pass different types of parameters, too few args, too many argos etc. Keep functio...
-
Hi All, Thanks for taking out time to read this post. Can someone help me with this? When I try to run this, System.TypeLoadExeception Error...
No comments:
Post a Comment