Skip to content

Commit 7e30c05

Browse files
committed
ASP-98 UPDATE: modify the file level doc
1 parent cae76f3 commit 7e30c05

File tree

3 files changed

+0
-27
lines changed

3 files changed

+0
-27
lines changed

src/algorithms/controllers/AVLTree.test.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,6 @@
22
* The purpose of the test here is to detect whether the correct result is generated
33
* under the legal input, help developers identify potential errors that may arise
44
* from the rotation logic.
5-
*
6-
* @author StaticSound Team
7-
* - Hao Chen (1314613) <[email protected]>
8-
* - Jiayi Sun (1305340) <[email protected]>
9-
* - Junhao Zhu (1261757) <[email protected]>
10-
* - Ziyu Wang (1243302) <[email protected]>
11-
* - Gaoyongle Zhang (1346309) <[email protected]>
12-
*
13-
* @since 10/10/2024
145
*/
156

167
/* eslint-disable no-undef */

src/algorithms/controllers/AVLTreeInsertion.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,6 @@
1414
* 5. Check the balance factor of the root node.
1515
* 6. If unbalanced, perform rotations to balance the tree.
1616
* 7. Return the root node of the tree.
17-
*
18-
* @author StaticSound Team
19-
* - Hao Chen (1314613) <[email protected]>
20-
* - Jiayi Sun (1305340) <[email protected]>
21-
* - Junhao Zhu (1261757) <[email protected]>
22-
* - Ziyu Wang (1243302) <[email protected]>
23-
* - Gaoyongle Zhang (1346309) <[email protected]>
24-
*
25-
* @since 08/10/2024
2617
*/
2718

2819
import GraphTracer from '../../components/DataStructures/Graph/GraphTracer';

src/algorithms/controllers/AVLTreeSearch.js

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,6 @@
88
* By accessing the visualized AVL tree, it retrieves the complete tree structure.
99
* The input is a node to be searched for, and the algorithm starts from the root,
1010
* traversing down to the child nodes to find the target node.
11-
*
12-
* @author StaticSound Team
13-
* - Hao Chen (1314613) <[email protected]>
14-
* - Jiayi Sun (1305340) <[email protected]>
15-
* - Junhao Zhu (1261757) <[email protected]>
16-
* - Ziyu Wang (1243302) <[email protected]>
17-
* - Gaoyongle Zhang (1346309) <[email protected]>
18-
*
19-
* @since 08/10/2024
2011
*/
2112

2213
export default {

0 commit comments

Comments
 (0)