mirror of
https://github.com/krahets/hello-algo.git
synced 2025-11-02 12:58:42 +08:00
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:
@ -39,9 +39,10 @@ public class TreeNode {
|
||||
if (i < 0 || i >= arr.Count || !arr[i].HasValue) {
|
||||
return null;
|
||||
}
|
||||
TreeNode root = new TreeNode(arr[i].Value);
|
||||
root.left = ListToTreeDFS(arr, 2 * i + 1);
|
||||
root.right = ListToTreeDFS(arr, 2 * i + 2);
|
||||
TreeNode root = new(arr[i].Value) {
|
||||
left = ListToTreeDFS(arr, 2 * i + 1),
|
||||
right = ListToTreeDFS(arr, 2 * i + 2)
|
||||
};
|
||||
return root;
|
||||
}
|
||||
|
||||
@ -63,8 +64,8 @@ public class TreeNode {
|
||||
}
|
||||
|
||||
/* 将二叉树序列化为列表 */
|
||||
public static List<int?> treeToList(TreeNode root) {
|
||||
List<int?> res = new List<int?>();
|
||||
public static List<int?> TreeToList(TreeNode root) {
|
||||
List<int?> res = new();
|
||||
TreeToListDFS(root, 0, res);
|
||||
return res;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user