From de579aa3f486bc23b7e8fad5a0c6706bcc4c36e7 Mon Sep 17 00:00:00 2001 From: krahets Date: Sun, 23 Apr 2023 19:36:07 +0800 Subject: [PATCH] Fix the file headers. --- codes/cpp/chapter_stack_and_queue/array_deque.cpp | 2 +- codes/cpp/chapter_stack_and_queue/linkedlist_deque.cpp | 2 +- codes/csharp/chapter_graph/graph_adjacency_matrix.cs | 2 +- codes/csharp/chapter_tree/binary_tree_dfs.cs | 2 +- .../dart/chapter_computational_complexity/time_complexity.dart | 2 +- .../worst_best_time_complexity.dart | 2 +- codes/dart/chapter_stack_and_queue/queue.dart | 2 +- .../worst_best_time_complexity_test.go | 2 +- codes/go/chapter_heap/heap.go | 2 +- codes/go/chapter_searching/hashing_search.go | 2 +- codes/go/chapter_searching/hashing_search_test.go | 2 +- codes/go/chapter_searching/leetcode_two_sum_test.go | 2 +- codes/go/chapter_sorting/counting_sort_test.go | 2 +- codes/java/chapter_hashing/array_hash_map.java | 2 +- codes/java/chapter_sorting/counting_sort.java | 2 +- codes/javascript/chapter_searching/linear_search.js | 2 +- codes/javascript/chapter_sorting/counting_sort.js | 2 +- .../python/chapter_backtracking/preorder_traversal_i_compact.py | 2 +- .../chapter_backtracking/preorder_traversal_ii_compact.py | 2 +- .../chapter_backtracking/preorder_traversal_iii_compact.py | 2 +- .../chapter_backtracking/preorder_traversal_iii_template.py | 2 +- .../worst_best_time_complexity.rs | 2 +- codes/typescript/chapter_searching/hashing_search.ts | 2 +- codes/typescript/chapter_sorting/counting_sort.ts | 2 +- 24 files changed, 24 insertions(+), 24 deletions(-) diff --git a/codes/cpp/chapter_stack_and_queue/array_deque.cpp b/codes/cpp/chapter_stack_and_queue/array_deque.cpp index dae878a2e..dd7924a2c 100644 --- a/codes/cpp/chapter_stack_and_queue/array_deque.cpp +++ b/codes/cpp/chapter_stack_and_queue/array_deque.cpp @@ -1,5 +1,5 @@ /** - * File: array_deque->cpp + * File: array_deque.cpp * Created Time: 2023-03-02 * Author: Krahets (krahets@163.com) */ diff --git a/codes/cpp/chapter_stack_and_queue/linkedlist_deque.cpp b/codes/cpp/chapter_stack_and_queue/linkedlist_deque.cpp index f160ec161..7f4a40b28 100644 --- a/codes/cpp/chapter_stack_and_queue/linkedlist_deque.cpp +++ b/codes/cpp/chapter_stack_and_queue/linkedlist_deque.cpp @@ -1,5 +1,5 @@ /** - * File: linkedlist_deque->cpp + * File: linkedlist_deque.cpp * Created Time: 2023-03-02 * Author: Krahets (krahets@163.com) */ diff --git a/codes/csharp/chapter_graph/graph_adjacency_matrix.cs b/codes/csharp/chapter_graph/graph_adjacency_matrix.cs index f9f75cbb7..50fe3d456 100644 --- a/codes/csharp/chapter_graph/graph_adjacency_matrix.cs +++ b/codes/csharp/chapter_graph/graph_adjacency_matrix.cs @@ -1,5 +1,5 @@ /** - * File: graph_adjacency_list.cs + * File: graph_adjacency_matrix.cs * Created Time: 2023-02-06 * Author: zjkung1123 (zjkung1123@gmail.com) */ diff --git a/codes/csharp/chapter_tree/binary_tree_dfs.cs b/codes/csharp/chapter_tree/binary_tree_dfs.cs index 9af19eab0..6b0d3481a 100644 --- a/codes/csharp/chapter_tree/binary_tree_dfs.cs +++ b/codes/csharp/chapter_tree/binary_tree_dfs.cs @@ -1,5 +1,5 @@ /** - * File: binary_tree_bfs.cs + * File: binary_tree_dfs.cs * Created Time: 2022-12-23 * Author: haptear (haptear@hotmail.com) */ diff --git a/codes/dart/chapter_computational_complexity/time_complexity.dart b/codes/dart/chapter_computational_complexity/time_complexity.dart index 1da2e3fe3..b0cef6165 100644 --- a/codes/dart/chapter_computational_complexity/time_complexity.dart +++ b/codes/dart/chapter_computational_complexity/time_complexity.dart @@ -1,5 +1,5 @@ /** - * File: time_complexity + * File: time_complexity.dart * Created Time: 2023-02-12 * Author: Jefferson (JeffersonHuang77@gmail.com) */ diff --git a/codes/dart/chapter_computational_complexity/worst_best_time_complexity.dart b/codes/dart/chapter_computational_complexity/worst_best_time_complexity.dart index 65d3545f2..2a3d6b283 100644 --- a/codes/dart/chapter_computational_complexity/worst_best_time_complexity.dart +++ b/codes/dart/chapter_computational_complexity/worst_best_time_complexity.dart @@ -1,5 +1,5 @@ /** - * File: worst_best_time_complexity + * File: worst_best_time_complexity.dart * Created Time: 2023-02-12 * Author: Jefferson (JeffersonHuang77@gmail.com) */ diff --git a/codes/dart/chapter_stack_and_queue/queue.dart b/codes/dart/chapter_stack_and_queue/queue.dart index 115cb5fc8..0182478cf 100644 --- a/codes/dart/chapter_stack_and_queue/queue.dart +++ b/codes/dart/chapter_stack_and_queue/queue.dart @@ -1,5 +1,5 @@ /** - * File: queue:dart + * File: queue.dart * Created Time: 2023-03-28 * Author: liuyuxin (gvenusleo@gmail.com) */ diff --git a/codes/go/chapter_computational_complexity/worst_best_time_complexity_test.go b/codes/go/chapter_computational_complexity/worst_best_time_complexity_test.go index ccbcb0396..fed5f1836 100644 --- a/codes/go/chapter_computational_complexity/worst_best_time_complexity_test.go +++ b/codes/go/chapter_computational_complexity/worst_best_time_complexity_test.go @@ -1,4 +1,4 @@ -// File: worst_best_time_complexity.go +// File: worst_best_time_complexity_test.go // Created Time: 2022-12-13 // Author: msk397 (machangxinq@gmail.com), cathay (cathaycchen@gmail.com) diff --git a/codes/go/chapter_heap/heap.go b/codes/go/chapter_heap/heap.go index 5f846ced4..f2a90fbd9 100644 --- a/codes/go/chapter_heap/heap.go +++ b/codes/go/chapter_heap/heap.go @@ -1,4 +1,4 @@ -// File: intHeap.go +// File: heap.go // Created Time: 2023-01-12 // Author: Reanon (793584285@qq.com) diff --git a/codes/go/chapter_searching/hashing_search.go b/codes/go/chapter_searching/hashing_search.go index 7d10b8679..b3f9623d7 100644 --- a/codes/go/chapter_searching/hashing_search.go +++ b/codes/go/chapter_searching/hashing_search.go @@ -1,4 +1,4 @@ -// File: binary_search.go +// File: hashing_search.go // Created Time: 2022-12-12 // Author: Slone123c (274325721@qq.com) diff --git a/codes/go/chapter_searching/hashing_search_test.go b/codes/go/chapter_searching/hashing_search_test.go index fd0f29bba..8db3231fd 100644 --- a/codes/go/chapter_searching/hashing_search_test.go +++ b/codes/go/chapter_searching/hashing_search_test.go @@ -1,4 +1,4 @@ -// File: binary_search.go +// File: hashing_search_test.go // Created Time: 2022-12-12 // Author: Slone123c (274325721@qq.com) diff --git a/codes/go/chapter_searching/leetcode_two_sum_test.go b/codes/go/chapter_searching/leetcode_two_sum_test.go index e45d5fb21..38026dc80 100644 --- a/codes/go/chapter_searching/leetcode_two_sum_test.go +++ b/codes/go/chapter_searching/leetcode_two_sum_test.go @@ -1,4 +1,4 @@ -// File: leetcode_two_sum.go +// File: leetcode_two_sum_test.go // Created Time: 2022-11-25 // Author: reanon (793584285@qq.com) diff --git a/codes/go/chapter_sorting/counting_sort_test.go b/codes/go/chapter_sorting/counting_sort_test.go index 0a5c88e8a..5cae817fb 100644 --- a/codes/go/chapter_sorting/counting_sort_test.go +++ b/codes/go/chapter_sorting/counting_sort_test.go @@ -1,4 +1,4 @@ -// File: count_sort_test.go +// File: counting_sort_test.go // Created Time: 2023-03-20 // Author: Reanon (793584285@qq.com) diff --git a/codes/java/chapter_hashing/array_hash_map.java b/codes/java/chapter_hashing/array_hash_map.java index 0965dc4ef..6a09d79cd 100644 --- a/codes/java/chapter_hashing/array_hash_map.java +++ b/codes/java/chapter_hashing/array_hash_map.java @@ -1,5 +1,5 @@ /** - * File: hash_map.java + * File: array_hash_map.java * Created Time: 2022-12-04 * Author: Krahets (krahets@163.com) */ diff --git a/codes/java/chapter_sorting/counting_sort.java b/codes/java/chapter_sorting/counting_sort.java index afdbeb8cc..f66ecc404 100644 --- a/codes/java/chapter_sorting/counting_sort.java +++ b/codes/java/chapter_sorting/counting_sort.java @@ -1,5 +1,5 @@ /** - * File: coutning_sort.java + * File: counting_sort.java * Created Time: 2023-03-17 * Author: Krahets (krahets@163.com) */ diff --git a/codes/javascript/chapter_searching/linear_search.js b/codes/javascript/chapter_searching/linear_search.js index d2c641381..9f62cc3a2 100644 --- a/codes/javascript/chapter_searching/linear_search.js +++ b/codes/javascript/chapter_searching/linear_search.js @@ -1,5 +1,5 @@ /** - * File: linear-search.js + * File: linear_search.js * Created Time: 2022-12-22 * Author: JoseHung (szhong@link.cuhk.edu.hk) */ diff --git a/codes/javascript/chapter_sorting/counting_sort.js b/codes/javascript/chapter_sorting/counting_sort.js index 53f2faf00..dee3c1603 100644 --- a/codes/javascript/chapter_sorting/counting_sort.js +++ b/codes/javascript/chapter_sorting/counting_sort.js @@ -1,5 +1,5 @@ /** - * File: coutning_sort.js + * File: counting_sort.js * Created Time: 2023-04-08 * Author: Justin (xiefahit@gmail.com) */ diff --git a/codes/python/chapter_backtracking/preorder_traversal_i_compact.py b/codes/python/chapter_backtracking/preorder_traversal_i_compact.py index 09df30a40..44bd6741f 100644 --- a/codes/python/chapter_backtracking/preorder_traversal_i_compact.py +++ b/codes/python/chapter_backtracking/preorder_traversal_i_compact.py @@ -1,5 +1,5 @@ """ -File: find_nodes-preorder.py +File: preorder_traversal_i_compact.py Created Time: 2023-04-15 Author: Krahets (krahets@163.com) """ diff --git a/codes/python/chapter_backtracking/preorder_traversal_ii_compact.py b/codes/python/chapter_backtracking/preorder_traversal_ii_compact.py index 72e058b42..c0350e427 100644 --- a/codes/python/chapter_backtracking/preorder_traversal_ii_compact.py +++ b/codes/python/chapter_backtracking/preorder_traversal_ii_compact.py @@ -1,5 +1,5 @@ """ -File: find_paths-preorder.py +File: preorder_traversal_ii_compact.py Created Time: 2023-04-15 Author: Krahets (krahets@163.com) """ diff --git a/codes/python/chapter_backtracking/preorder_traversal_iii_compact.py b/codes/python/chapter_backtracking/preorder_traversal_iii_compact.py index 6a796cb21..55bf24ee6 100644 --- a/codes/python/chapter_backtracking/preorder_traversal_iii_compact.py +++ b/codes/python/chapter_backtracking/preorder_traversal_iii_compact.py @@ -1,5 +1,5 @@ """ -File: find_constrained_paths_template.py +File: preorder_traversal_iii_compact.py Created Time: 2023-04-15 Author: Krahets (krahets@163.com) """ diff --git a/codes/python/chapter_backtracking/preorder_traversal_iii_template.py b/codes/python/chapter_backtracking/preorder_traversal_iii_template.py index fd3a39e42..b6b9e9afc 100644 --- a/codes/python/chapter_backtracking/preorder_traversal_iii_template.py +++ b/codes/python/chapter_backtracking/preorder_traversal_iii_template.py @@ -1,5 +1,5 @@ """ -File: find_constrained_paths_template.py +File: preorder_traversal_iii_template.py Created Time: 2023-04-15 Author: Krahets (krahets@163.com) """ diff --git a/codes/rust/chapter_computational_complexity/worst_best_time_complexity.rs b/codes/rust/chapter_computational_complexity/worst_best_time_complexity.rs index 6a05fac61..52c44f73f 100644 --- a/codes/rust/chapter_computational_complexity/worst_best_time_complexity.rs +++ b/codes/rust/chapter_computational_complexity/worst_best_time_complexity.rs @@ -1,5 +1,5 @@ /* - * File: time_complexity.rs + * File: worst_best_time_complexity.rs * Created Time: 2023-01-13 * Author: xBLACICEx (xBLACKICEx@outlook.com), sjinzh (sjinzh@gmail.com) */ diff --git a/codes/typescript/chapter_searching/hashing_search.ts b/codes/typescript/chapter_searching/hashing_search.ts index 7c56c4f8d..e20217c5c 100644 --- a/codes/typescript/chapter_searching/hashing_search.ts +++ b/codes/typescript/chapter_searching/hashing_search.ts @@ -1,5 +1,5 @@ /** - * File: hashing_search.js + * File: hashing_search.ts * Created Time: 2022-12-29 * Author: Zhuo Qinyue (1403450829@qq.com) */ diff --git a/codes/typescript/chapter_sorting/counting_sort.ts b/codes/typescript/chapter_sorting/counting_sort.ts index 99ac3297a..cdf60c0a4 100644 --- a/codes/typescript/chapter_sorting/counting_sort.ts +++ b/codes/typescript/chapter_sorting/counting_sort.ts @@ -1,5 +1,5 @@ /** - * File: coutning_sort.ts + * File: counting_sort.ts * Created Time: 2023-04-08 * Author: Justin (xiefahit@gmail.com) */