本文整理汇总了C#中CstNode.Children方法的典型用法代码示例。如果您正苦于以下问题:C# CstNode.Children方法的具体用法?C# CstNode.Children怎么用?C# CstNode.Children使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CstNode
的用法示例。
在下文中一共展示了CstNode.Children方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: GetFeatureVector
private static string GetFeatureVector(
CstNode node, string path, IDictionary<string, BigInteger> featureString2Bit,
FeatureExtractor extractor, IDictionary<CstNode, string> ancestors,
ref BigInteger vector) {
BigInteger bit;
var token = "";
if (node.HasToken) {
token = extractor.GetToken(node);
} else {
foreach (var child in node.Children()) {
//var newPath = path + (ancestors.Contains(child) ? "/" : ">")
// + child.Name + child.RuleId;
var newPath = (ancestors.ContainsKey(child)
? ancestors[child]
: path + ">" + child.Name + child.RuleId);
if (featureString2Bit.TryGetValue(newPath, out bit)) {
vector |= bit;
var ret = GetFeatureVector(
child, newPath, featureString2Bit, extractor, ancestors, ref vector);
if (token != null && ret != null) {
token += ret;
continue;
}
}
token = null;
}
}
if (token != null) {
if (featureString2Bit.TryGetValue(path + "'" + token, out bit)) {
vector |= bit;
}
}
return token;
}
示例2: GetSurroundingPaths
private static Tuple<string, bool> GetSurroundingPaths(
CstNode node, string path, ICollection<CstNode> surroundingNodes,
FeatureExtractor extractor, ISet<string> paths,
IDictionary<CstNode, string> ancestors) {
var token = "";
var temporal = false;
var count = 0;
if (node.HasToken) {
token = extractor.GetToken(node);
temporal = IsTemporalVariable(token);
} else {
foreach (var child in node.Children()) {
count++;
if (surroundingNodes.Contains(child)) {
//var newPath = path + (ancestors.Contains(child) ? "/" : ">")
// + child.Name + child.RuleId;
var newPath = (ancestors.ContainsKey(child)
? ancestors[child]
: path + ">" + child.Name + child.RuleId);
var ret = GetSurroundingPaths(
child, newPath, surroundingNodes, extractor, paths, ancestors);
temporal = ret.Item2;
if (token != null && ret.Item1 != null) {
token += ret.Item1;
continue;
}
}
token = null;
}
}
if (temporal && count <= 1) {
return Tuple.Create<string, bool>(null, true);
}
paths.Add(path);
if (token != null) {
paths.Add(path + "'" + token); // need node.Name + node.RuleId ?
}
return Tuple.Create(token, false);
}