mirror of
https://github.com/krahets/hello-algo.git
synced 2026-07-08 05:26:07 +00:00
feature: Add csharp code graph_bfs and graph_dfs (#404)
* add csharp code graph_bfs and graph_dfs, modify graph adjacency list class inaccessable * remove unnecessary using * fix code style issue in comments
This commit is contained in:
@@ -10,10 +10,10 @@ using NUnit.Framework;
|
||||
namespace hello_algo.chapter_graph;
|
||||
|
||||
/* 基于邻接表实现的无向图类 */
|
||||
class GraphAdjList
|
||||
public class GraphAdjList
|
||||
{
|
||||
// 邻接表,key: 顶点,value:该顶点的所有邻接顶点
|
||||
Dictionary<Vertex, List<Vertex>> adjList;
|
||||
public Dictionary<Vertex, List<Vertex>> adjList;
|
||||
|
||||
/* 构造函数 */
|
||||
public GraphAdjList(Vertex[][] edges)
|
||||
|
||||
Reference in New Issue
Block a user