fix(csharp): Modify method name to PascalCase, simplify new expression (#840)

* Modify method name to PascalCase(array and linked list)

* Modify method name to PascalCase(backtracking)

* Modify method name to PascalCase(computational complexity)

* Modify method name to PascalCase(divide and conquer)

* Modify method name to PascalCase(dynamic programming)

* Modify method name to PascalCase(graph)

* Modify method name to PascalCase(greedy)

* Modify method name to PascalCase(hashing)

* Modify method name to PascalCase(heap)

* Modify method name to PascalCase(searching)

* Modify method name to PascalCase(sorting)

* Modify method name to PascalCase(stack and queue)

* Modify method name to PascalCase(tree)

* local check
This commit is contained in:
hpstory
2023-10-08 01:33:46 +08:00
committed by GitHub
parent 6f7e768cb7
commit f62256bee1
129 changed files with 1186 additions and 1192 deletions
@@ -11,7 +11,7 @@ public class preorder_traversal_iii_compact {
static List<List<TreeNode>> res;
/* 前序遍历:例题三 */
static void preOrder(TreeNode root) {
static void PreOrder(TreeNode root) {
// 剪枝
if (root == null || root.val == 3) {
return;
@@ -22,8 +22,8 @@ public class preorder_traversal_iii_compact {
// 记录解
res.Add(new List<TreeNode>(path));
}
preOrder(root.left);
preOrder(root.right);
PreOrder(root.left);
PreOrder(root.right);
// 回退
path.RemoveAt(path.Count - 1);
}
@@ -37,7 +37,7 @@ public class preorder_traversal_iii_compact {
// 前序遍历
path = new List<TreeNode>();
res = new List<List<TreeNode>>();
preOrder(root);
PreOrder(root);
Console.WriteLine("\n输出所有根节点到节点 7 的路径,路径中不包含值为 3 的节点");
foreach (List<TreeNode> path in res) {