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:
@ -70,7 +70,7 @@ public static class PrintUtil {
|
||||
}
|
||||
|
||||
string prev_str = " ";
|
||||
Trunk trunk = new Trunk(prev, prev_str);
|
||||
Trunk trunk = new(prev, prev_str);
|
||||
|
||||
PrintTree(root.right, trunk, true);
|
||||
|
||||
@ -126,8 +126,8 @@ public static class PrintUtil {
|
||||
public static void PrintHeap(PriorityQueue<int, int> queue) {
|
||||
var newQueue = new PriorityQueue<int, int>(queue.UnorderedItems, queue.Comparer);
|
||||
Console.Write("堆的数组表示:");
|
||||
List<int> list = new List<int>();
|
||||
while (newQueue.TryDequeue(out int element, out int priority)) {
|
||||
List<int> list = new();
|
||||
while (newQueue.TryDequeue(out int element, out _)) {
|
||||
list.Add(element);
|
||||
}
|
||||
Console.WriteLine("堆的树状表示:");
|
||||
|
||||
Reference in New Issue
Block a user