mirror of
https://github.com/krahets/hello-algo.git
synced 2025-01-23 06:00:27 +08:00
Fix the file headers.
This commit is contained in:
parent
3590262c7e
commit
de579aa3f4
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* File: array_deque->cpp
|
||||
* File: array_deque.cpp
|
||||
* Created Time: 2023-03-02
|
||||
* Author: Krahets (krahets@163.com)
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* File: linkedlist_deque->cpp
|
||||
* File: linkedlist_deque.cpp
|
||||
* Created Time: 2023-03-02
|
||||
* Author: Krahets (krahets@163.com)
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* File: graph_adjacency_list.cs
|
||||
* File: graph_adjacency_matrix.cs
|
||||
* Created Time: 2023-02-06
|
||||
* Author: zjkung1123 (zjkung1123@gmail.com)
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* File: binary_tree_bfs.cs
|
||||
* File: binary_tree_dfs.cs
|
||||
* Created Time: 2022-12-23
|
||||
* Author: haptear (haptear@hotmail.com)
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* File: time_complexity
|
||||
* File: time_complexity.dart
|
||||
* Created Time: 2023-02-12
|
||||
* Author: Jefferson (JeffersonHuang77@gmail.com)
|
||||
*/
|
||||
|
@ -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)
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* File: queue:dart
|
||||
* File: queue.dart
|
||||
* Created Time: 2023-03-28
|
||||
* Author: liuyuxin (gvenusleo@gmail.com)
|
||||
*/
|
||||
|
@ -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)
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// File: intHeap.go
|
||||
// File: heap.go
|
||||
// Created Time: 2023-01-12
|
||||
// Author: Reanon (793584285@qq.com)
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// File: binary_search.go
|
||||
// File: hashing_search.go
|
||||
// Created Time: 2022-12-12
|
||||
// Author: Slone123c (274325721@qq.com)
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// File: binary_search.go
|
||||
// File: hashing_search_test.go
|
||||
// Created Time: 2022-12-12
|
||||
// Author: Slone123c (274325721@qq.com)
|
||||
|
||||
|
@ -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)
|
||||
|
||||
|
@ -1,4 +1,4 @@
|
||||
// File: count_sort_test.go
|
||||
// File: counting_sort_test.go
|
||||
// Created Time: 2023-03-20
|
||||
// Author: Reanon (793584285@qq.com)
|
||||
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* File: hash_map.java
|
||||
* File: array_hash_map.java
|
||||
* Created Time: 2022-12-04
|
||||
* Author: Krahets (krahets@163.com)
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* File: coutning_sort.java
|
||||
* File: counting_sort.java
|
||||
* Created Time: 2023-03-17
|
||||
* Author: Krahets (krahets@163.com)
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* File: linear-search.js
|
||||
* File: linear_search.js
|
||||
* Created Time: 2022-12-22
|
||||
* Author: JoseHung (szhong@link.cuhk.edu.hk)
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* File: coutning_sort.js
|
||||
* File: counting_sort.js
|
||||
* Created Time: 2023-04-08
|
||||
* Author: Justin (xiefahit@gmail.com)
|
||||
*/
|
||||
|
@ -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)
|
||||
"""
|
||||
|
@ -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)
|
||||
"""
|
||||
|
@ -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)
|
||||
"""
|
||||
|
@ -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)
|
||||
"""
|
||||
|
@ -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)
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* File: hashing_search.js
|
||||
* File: hashing_search.ts
|
||||
* Created Time: 2022-12-29
|
||||
* Author: Zhuo Qinyue (1403450829@qq.com)
|
||||
*/
|
||||
|
@ -1,5 +1,5 @@
|
||||
/**
|
||||
* File: coutning_sort.ts
|
||||
* File: counting_sort.ts
|
||||
* Created Time: 2023-04-08
|
||||
* Author: Justin (xiefahit@gmail.com)
|
||||
*/
|
||||
|
Loading…
Reference in New Issue
Block a user