我有一个从此类创建的树。
class Node
{
public string Key { get; }
public List<Node> Children { get; }
}
我想搜索所有孩子及其所有孩子,以找到符合条件的孩子:
node.Key == SomeSpecialKey
我该如何实施?
我有一个从此类创建的树。
class Node
{
public string Key { get; }
public List<Node> Children { get; }
}
我想搜索所有孩子及其所有孩子,以找到符合条件的孩子:
node.Key == SomeSpecialKey
我该如何实施?
Answers:
这是一个误解,认为这需要递归。这将需要一个堆栈或队列和最简单的方法是使用递归来实现它。为了完整起见,我将提供一个非递归答案。
static IEnumerable<Node> Descendants(this Node root)
{
var nodes = new Stack<Node>(new[] {root});
while (nodes.Any())
{
Node node = nodes.Pop();
yield return node;
foreach (var n in node.Children) nodes.Push(n);
}
}
例如,使用以下表达式来使用它:
root.Descendants().Where(node => node.Key == SomeSpecialKey)
StackOverflowException
。
Queue<Node>
(对Enqueue
/进行相应的更改,Dequeue
从Push
/进行Pop
)。
public static class TreeToEnumerableEx
{
public static IEnumerable<T> AsDepthFirstEnumerable<T>(this T head, Func<T, IEnumerable<T>> childrenFunc)
{
yield return head;
foreach (var node in childrenFunc(head))
{
foreach (var child in AsDepthFirstEnumerable(node, childrenFunc))
{
yield return child;
}
}
}
public static IEnumerable<T> AsBreadthFirstEnumerable<T>(this T head, Func<T, IEnumerable<T>> childrenFunc)
{
yield return head;
var last = head;
foreach (var node in AsBreadthFirstEnumerable(head, childrenFunc))
{
foreach (var child in childrenFunc(node))
{
yield return child;
last = child;
}
if (last.Equals(node)) yield break;
}
}
}
head
并将childrenFunc
方法分为两部分,以使参数检查不会延迟遍历时间。
如果您想要维护类似于Linq的语法,则可以使用一种方法来获取所有后代(子代+孩子的子代等)。
static class NodeExtensions
{
public static IEnumerable<Node> Descendants(this Node node)
{
return node.Children.Concat(node.Children.SelectMany(n => n.Descendants()));
}
}
然后,可以像其他任何查询一样使用where或first或诸如此类查询此可枚举的对象。
您可以尝试使用这种扩展方法来枚举树节点:
static IEnumerable<Node> GetTreeNodes(this Node rootNode)
{
yield return rootNode;
foreach (var childNode in rootNode.Children)
{
foreach (var child in childNode.GetTreeNodes())
yield return child;
}
}
然后将其与Where()
子句一起使用:
var matchingNodes = rootNode.GetTreeNodes().Where(x => x.Key == SomeSpecialKey);
也许你只需要
node.Children.Where(child => child.Key == SomeSpecialKey)
或者,如果您需要更深一层的搜索,
node.Children.SelectMany(
child => child.Children.Where(child => child.Key == SomeSpecialKey))
如果需要在所有级别上搜索,请执行以下操作:
IEnumerable<Node> FlattenAndFilter(Node source)
{
List<Node> l = new List();
if (source.Key == SomeSpecialKey)
l.Add(source);
return
l.Concat(source.Children.SelectMany(child => FlattenAndFilter(child)));
}
public class Node
{
string key;
List<Node> children;
public Node(string key)
{
this.key = key;
children = new List<Node>();
}
public string Key { get { return key; } }
public List<Node> Children { get { return children; } }
public Node Find(Func<Node, bool> myFunc)
{
foreach (Node node in Children)
{
if (myFunc(node))
{
return node;
}
else
{
Node test = node.Find(myFunc);
if (test != null)
return test;
}
}
return null;
}
}
然后您可以像搜索:
Node root = new Node("root");
Node child1 = new Node("child1");
Node child2 = new Node("child2");
Node child3 = new Node("child3");
Node child4 = new Node("child4");
Node child5 = new Node("child5");
Node child6 = new Node("child6");
root.Children.Add(child1);
root.Children.Add(child2);
child1.Children.Add(child3);
child2.Children.Add(child4);
child4.Children.Add(child5);
child5.Children.Add(child6);
Node test = root.Find(p => p.Key == "child6");
为什么不使用IEnumerable<T>
扩展方法
public static IEnumerable<TResult> SelectHierarchy<TResult>(this IEnumerable<TResult> source, Func<TResult, IEnumerable<TResult>> collectionSelector, Func<TResult, bool> predicate)
{
if (source == null)
{
yield break;
}
foreach (var item in source)
{
if (predicate(item))
{
yield return item;
}
var childResults = SelectHierarchy(collectionSelector(item), collectionSelector, predicate);
foreach (var childItem in childResults)
{
yield return childItem;
}
}
}
然后就这样做
var result = nodes.Children.SelectHierarchy(n => n.Children, n => n.Key.IndexOf(searchString) != -1);
前一段时间,我写了一篇代码项目文章,描述了如何使用Linq查询树状结构:
http://www.codeproject.com/KB/linq/LinqToTree.aspx
这提供了linq-to-XML样式的API,您可以在其中搜索后代,子代,祖先等。
对于您当前的问题,可能会大刀阔斧,但其他人可能会感兴趣。
我有一个通用的扩展方法,该方法可以展平任何对象,IEnumerable<T>
并且可以从该展平的集合中获取所需的节点。
public static IEnumerable<T> FlattenHierarchy<T>(this T node, Func<T, IEnumerable<T>> getChildEnumerator)
{
yield return node;
if (getChildEnumerator(node) != null)
{
foreach (var child in getChildEnumerator(node))
{
foreach (var childOrDescendant in child.FlattenHierarchy(getChildEnumerator))
{
yield return childOrDescendant;
}
}
}
}
像这样使用:
var q = from node in myTree.FlattenHierarchy(x => x.Children)
where node.Key == "MyKey"
select node;
var theNode = q.SingleOrDefault();
我使用以下实现枚举Tree项目
public static IEnumerable<Node> DepthFirstUnfold(this Node root) =>
ObjectAsEnumerable(root).Concat(root.Children.SelectMany(DepthFirstUnfold));
public static IEnumerable<Node> BreadthFirstUnfold(this Node root) {
var queue = new Queue<IEnumerable<Node>>();
queue.Enqueue(ObjectAsEnumerable(root));
while (queue.Count != 0)
foreach (var node in queue.Dequeue()) {
yield return node;
queue.Enqueue(node.Children);
}
}
private static IEnumerable<T> ObjectAsEnumerable<T>(T obj) {
yield return obj;
}
上面实现中的BreadthFirstUnfold使用节点序列队列而不是节点队列。这不是经典的BFS算法。
只是为了好玩(大约十年后),一个答案也使用了泛型,但是带有一个堆栈和While循环,基于@vidstige接受的答案。
public static class TypeExtentions
{
public static IEnumerable<T> Descendants<T>(this T root, Func<T, IEnumerable<T>> selector)
{
var nodes = new Stack<T>(new[] { root });
while (nodes.Any())
{
T node = nodes.Pop();
yield return node;
foreach (var n in selector(node)) nodes.Push(n);
}
}
public static IEnumerable<T> Descendants<T>(this IEnumerable<T> encounter, Func<T, IEnumerable<T>> selector)
{
var nodes = new Stack<T>(encounter);
while (nodes.Any())
{
T node = nodes.Pop();
yield return node;
if (selector(node) != null)
foreach (var n in selector(node))
nodes.Push(n);
}
}
}
给定一个集合,就可以这样使用
var myNode = ListNodes.Descendants(x => x.Children).Where(x => x.Key == SomeKey);
或带有根对象
var myNode = root.Descendants(x => x.Children).Where(x => x.Key == SomeKey);