Rename the common modules in Java, C++ and C.

This commit is contained in:
krahets
2023-04-24 04:11:18 +08:00
parent c6eecfd0dc
commit 145975b335
120 changed files with 122 additions and 380 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
* Author: Reanon (793584285@qq.com)
*/
#include "../include/include.h"
#include "../utils/common.h"
/* AVL Tree */
struct aVLTree {
+1 -1
View File
@@ -4,7 +4,7 @@
* Author: Reanon (793584285@qq.com)
*/
#include "../include/include.h"
#include "../utils/common.h"
/* 二叉搜索树 */
struct binarySearchTree {
+1 -1
View File
@@ -4,7 +4,7 @@
* Author: Reanon (793584285@qq.com)
*/
#include "../include/include.h"
#include "../utils/common.h"
/* Driver Code */
int main() {
+1 -1
View File
@@ -4,7 +4,7 @@
* Author: Reanon (793584285@qq.com)
*/
#include "../include/include.h"
#include "../utils/common.h"
/* 层序遍历 */
int *levelOrder(TreeNode *root, int *size) {
+1 -1
View File
@@ -4,7 +4,7 @@
* Author: Reanon (793584285@qq.com)
*/
#include "../include/include.h"
#include "../utils/common.h"
/* 辅助数组,用于存储遍历序列 */
int *arr;