本文整理汇总了C#中Stack.OrderBy方法的典型用法代码示例。如果您正苦于以下问题:C# Stack.OrderBy方法的具体用法?C# Stack.OrderBy怎么用?C# Stack.OrderBy使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Stack
的用法示例。
在下文中一共展示了Stack.OrderBy方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Search
private void Search(IList<IList<int>> results, Stack<int> temp, int x, int k, int n)
{
if (temp.Count > 0 && k == 0 && n == 0)
{
results.Add(temp.OrderBy(y => y).ToList());
}
if (n <= 0 || x > 9 || k <= 0)
{
return;
}
temp.Push(x);
Search(results, temp, x + 1, k - 1, n - x);
temp.Pop();
Search(results, temp, x + 1, k, n);
}
示例2: Search
private void Search(IList<IList<int>> results, Stack<int> temp, int[] candidates, int remaining, int index)
{
if (remaining == 0)
{
if (temp.Count > 0)
{
results.Add(temp.OrderBy(x => x).ToList());
}
return;
}
if (remaining < 0 || index >= candidates.Length)
{
return;
}
temp.Push(candidates[index]);
Search(results, temp, candidates, remaining - candidates[index], index);
temp.Pop();
Search(results, temp, candidates, remaining, index + 1);
}