📄 dfs.h
字号:
/*****************************************************************************
* *
* -------------------------------- dfs.h --------------------------------- *
* *
*****************************************************************************/
#ifndef DFS_H
#define DFS_H
#include "graph.h"
#include "list.h"
/*****************************************************************************
* *
* Define a structure for vertices in depth-first search. *
* *
*****************************************************************************/
typedef struct DfsVertex_ {
void *data;
VertexColor color;
} DfsVertex;
/*****************************************************************************
* *
* --------------------------- Public Interface --------------------------- *
* *
*****************************************************************************/
int dfs(Graph *graph, List *ordered);
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -