מחזירה אתכם אחורה..
אשמח לשמוע תשובה, כמו גם קישורים ללמידה על עצים בינאריים.
הידע שלי בעניין מעורפל....
אשמח לשמוע תשובה, כמו גם קישורים ללמידה על עצים בינאריים.
הידע שלי בעניין מעורפל....
C:
class Node<T>
{
public Node(T item)
{
Data = item;
Left = null;
Right = null;
}
public T Data {get; set;}
public Node<T> Left {get; set;}
public Node<T> Right {get; set;}
}
public int foo<T>(Node<T> root)
{
if(root == null)
return 0;
if (root.Left == null && root.Right == null)
return 1;
if (foo(root.Left) > foo(root.Right))
return 1 + foo(root.Left);
else
return 1 + foo(root.Right);
}
קבצים מצורפים
נערך לאחרונה ע"י מנהל: