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

View File

@@ -4,7 +4,7 @@
* Author: what-is-me (whatisme@outlook.jp), Krahets (krahets@163.com)
*/
#include "../include/include.hpp"
#include "../utils/common.hpp"
/* 基于邻接表实现的无向图类 */
class GraphAdjList {

View File

@@ -4,7 +4,7 @@
* Author: what-is-me (whatisme@outlook.jp)
*/
#include "../include/include.hpp"
#include "../utils/common.hpp"
/* 基于邻接矩阵实现的无向图类 */
class GraphAdjMat {

View File

@@ -4,7 +4,7 @@
* Author: Krahets (krahets@163.com)
*/
#include "../include/include.hpp"
#include "../utils/common.hpp"
#include "./graph_adjacency_list.cpp"
/* 广度优先遍历 BFS */

View File

@@ -4,7 +4,7 @@
* Author: Krahets (krahets@163.com)
*/
#include "../include/include.hpp"
#include "../utils/common.hpp"
#include "./graph_adjacency_list.cpp"
/* 深度优先遍历 DFS 辅助函数 */