-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathUniqueBSTSln.cs
51 lines (48 loc) · 1.4 KB
/
UniqueBSTSln.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
using System;
using System.Collections.Generic;
using System.Text;
namespace leetcodeTest
{
public class UniqueBSTSln
{
// Definition for a binary tree node.
public class TreeNode
{
public int val;
public TreeNode left;
public TreeNode right;
public TreeNode(int x) { val = x; }
}
public IList<TreeNode> GenerateTrees(int n)
{
if (n == 0)
return new List<TreeNode>();
return binaryTrees(1, n);
}
private IList<TreeNode> binaryTrees(int start, int end)
{
IList<TreeNode> rtn = new List<TreeNode>();
if (start > end)
{
rtn.Add(null); //care it
return rtn;
}
for (int i = start; i <= end; i++)
{
IList<TreeNode> lefts = binaryTrees(start, i - 1);
IList<TreeNode> rights = binaryTrees(i + 1, end);
foreach (var leftNode in lefts)
{
foreach (var rightNode in rights)
{
TreeNode root = new TreeNode(i);
root.left = leftNode;
root.right = rightNode;
rtn.Add(root);
}
}
}
return rtn;
}
}
}