Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 포너블
- xcz
- WarGame
- hacking
- nefus
- kangsecu
- webhacking
- 웹해킹
- webhacking.kr
- 자료구조
- Pwnable
- 포렌식
- 네퓨즈
- 보안
- 정보보호
- 시스템
- 문제풀이
- 코드게이트
- 프로그래밍
- CTF
- 워게임
- 선린인터넷고등학교
- C언어
- 버그바운티
- wargame.kr
- DVP
- 정보보안
- 버그헌팅
- 해킹
- 블록체인
Archives
- Today
- Total
kangsecu's B1og
자료구조 -BFS,DFS etc.. 본문
BFS - 인접 리스트
#include <stdio.h>
#include <stdlib.h>
#define TRUE 1
#define FALSE 0
#define MAX_VERTICES 50
typedef struct GraphNode
{
int vertex;
struct GraphNode *link;
} GraphNode;
typedef struct GraphType {
int n; // 정점의 개수
GraphNode *adj_list[MAX_VERTICES];
} GraphType;
// 그래프 초기화
void graph_init(GraphType *g)
{
int v;
g->n = 0;
for (v = 0; v<MAX_VERTICES; v++)
g->adj_list[v] = NULL;
}
// 정점 삽입 연산
void insert_vertex(GraphType *g, int v)
{
if (((g->n) + 1) > MAX_VERTICES) {
fprintf(stderr, "그래프: 정점의 개수 초과");
return;
}
g->n++;
}
// 간선 삽입 연산, v를 u의 인접 리스트에 삽입한다.
void insert_edge(GraphType *g, int u, int v)
{
GraphNode *node;
if (u >= g->n || v >= g->n) {
fprintf(stderr, "그래프: 정점 번호 오류");
return;
}
node = (GraphNode *)malloc(sizeof(GraphNode));
node->vertex = v;
node->link = g->adj_list[u];
g->adj_list[u] = node;
}
int visited[MAX_VERTICES];
#define MAX_QUEUE_SIZE 100
typedef int element;
typedef struct {
element queue[MAX_QUEUE_SIZE];
int front, rear;
} QueueType;
//
void error(char *message)
{
fprintf(stderr, "%s\n", message);
exit(1);
}
// 초기화 함수
void init(QueueType *q)
{
q->front = q->rear = 0;
}
// 공백 상태 검출 함수
int is_empty(QueueType *q)
{
return (q->front == q->rear);
}
// 포화 상태 검출 함수
int is_full(QueueType *q)
{
return ((q->rear + 1) % MAX_QUEUE_SIZE == q->front);
}
// 삽입 함수
void enqueue(QueueType *q, element item)
{
if (is_full(q))
error("큐가 포화상태입니다");
q->rear = (q->rear + 1) % MAX_QUEUE_SIZE;
q->queue[q->rear] = item;
}
// 삭제 함수
element dequeue(QueueType *q)
{
if (is_empty(q))
error("큐가 공백상태입니다");
q->front = (q->front + 1) % MAX_QUEUE_SIZE;
return q->queue[q->front];
}
// 삭제 함수
element peek(QueueType *q)
{
if (is_empty(q))
error("큐가 공백상태입니다");
return q->queue[(q->front + 1) % MAX_QUEUE_SIZE];
}
void bfs_list(GraphType *g, int v)
{
GraphNode *w;
QueueType q;
init(&q); // 큐 초기 화
visited[v] = TRUE; // 정점 v 방문 표시
printf("%d ", v); // 방문한 정점 출력
enqueue(&q, v); // 시작정점을 큐에 저장
while (!is_empty(&q)) {
v = dequeue(&q); // 큐에 저장된 정점 선택
for (w = g->adj_list[v]; w; w = w->link) //인접 정점 탐색
if (!visited[w->vertex]) { // 미방문 정점 탐색
visited[w->vertex] = TRUE; // 방문 표시
printf("%d ", w->vertex);
enqueue(&q, w->vertex); //정점을 큐에 삽입
}
}
}
//
main()
{
int i;
GraphType g;
graph_init(&g);
// 인접 리스트 생성
for (i = 0; i<4; i++)
insert_vertex(&g, i);
insert_edge(&g, 0, 1);
insert_edge(&g, 1, 0);
insert_edge(&g, 0, 3);
insert_edge(&g, 3, 0);
insert_edge(&g, 1, 2);
insert_edge(&g, 2, 1);
insert_edge(&g, 1, 3);
insert_edge(&g, 3, 1);
insert_edge(&g, 2, 3);
insert_edge(&g, 3, 2);
bfs_list(&g, 0);
}
DFS - 인접 리스트
#include <stdio.h>
#include <stdlib.h>
#define TRUE 1
#define FALSE 0
#define MAX_VERTICES 50
#define MAX_QUEUE_SIZE 100
int visited[MAX_VERTICES];
typedef struct GraphNode
{
int vertex;
struct GraphNode *link;
}GraphNode;
typedef struct GraphType
{
int n;
GraphNode *adj_list[MAX_VERTICES];
}GraphType;
void graph_init(GraphType *g){
int v;
g->n=0;
for(v=0;v<MAX_VERTICES;v++)
g->adj_list[v]= NULL;
}
void insert_vertex(GraphType *g, int v)
{
if (((g->n) + 1) > MAX_VERTICES) {
fprintf(stderr, "그래프: 정점의 개수 초과");
return;
}
g->n++;
}
void insert_edge(GraphType *g, int u, int v)
{
GraphNode *node;
if (u >= g->n || v >= g->n) {
fprintf(stderr, "그래프: 정점 번호 오류");
return;
}
node = (GraphNode *)malloc(sizeof(GraphNode));
node->vertex = v;
node->link = g->adj_list[u];
g->adj_list[u] = node;
}
typedef int element;
typedef struct {
element queue[MAX_QUEUE_SIZE];
int front, rear;
} QueueType;
void error(char *message)
{
fprintf(stderr, "%s\n", message);
exit(1);
}
void init(QueueType *q){
q->front = q->rear = 0;
}
int is_empty(QueueType *q){
return (q->front == q->rear);
}
int is_full(QueueType *q){
return ((q->rear + 1) % MAX_QUEUE_SIZE == q->front);
}
void enqueue(QueueType *q, element item){
if (is_full(q))
error("큐가 포화상태입니다");
q->rear = (q->rear + 1) % MAX_QUEUE_SIZE;
q->queue[q->rear] = item;
}
element dequeue(QueueType *q){
if (is_empty(q))
error("큐가 공백상태입니다");
q->front = (q->front + 1) % MAX_QUEUE_SIZE;
return q->queue[q->front];
}
element peek(QueueType *q){
if (is_empty(q))
error("큐가 공백상태입니다");
return q->queue[(q->front + 1) % MAX_QUEUE_SIZE];
}
void dfs_list(GraphType *g, int v){
GraphNode *w;
visited[v] = TRUE;
printf("%d ", v);
for (w = g->adj_list[v]; w; w = w->link)// 인접 정점 탐색
if (!visited[w->vertex])
dfs_list(g, w->vertex); //정점 w에서 DFS 새로시작
}
int main(){
int i;
GraphType g;
graph_init(&g);
for (i = 0; i<4; i++)
insert_vertex(&g, i);
insert_edge(&g, 0, 1);
insert_edge(&g, 1, 0);
insert_edge(&g, 0, 3);
insert_edge(&g, 3, 0);
insert_edge(&g, 1, 2);
insert_edge(&g, 2, 1);
insert_edge(&g, 1, 3);
insert_edge(&g, 3, 1);
insert_edge(&g, 2, 3);
insert_edge(&g, 3, 2);
dfs_list(&g, 0);
return 0;
}
prim MST Algorithm
#include <stdio.h>
#define TRUE 1
#define FALSE O
#define MAX_VERTICES 7
#define INF 1000L
int weight [MAX_VERTICES] [MAX_VERTICES ]={
{ 0, 29, INF, INF, INF, 10, INF },
{ 29, 0, 16, INF, INF, INF, 15 },
{ INF, 16, 0, 12, INF, INF, INF },
{ INF, INF, 12, 0, 22, INF, 18 },
{ INF, INF, INF, 22, 0, 27, 25 },
{ 10, INF, INF, INF, 27, 0, INF },
{ INF, 15, INF, 18, 25, INF, 0 }};
int selected[MAX_VERTICES];
int dist[MAX_VERTICES];
// 최소 dist[v] 값을 갖는 정점을 반환 int get_min_vertex(int n)
int get_min_vertex(int n){
int v,i;
for (i = 0; i <n; i++)
if (!selected[i]) {
v = i;
break;
}
for (i = 0; i<n; i++)
if ( ! selected[i] && (dist[i] < dist[v])) v = i;
return (v);
}
void prim(int s, int n) {
int i, u, v;
for(u=0; u<n;u++)
dist[u]=INF;
dist[s]=0;
for(i=0;i<n;i++){
u = get_min_vertex(n);
selected[u]=TRUE;
if( dist[u] == INF ) return;
printf("%d ", u);
for( v=0; v<n; v++)
if( weight[u][v]!= INF)
if( ! selected[v] && weight[u][v]< dist[v] )
dist[v] = weight[u][v];
}
}
main()
{
prim(0, MAX_VERTICES);
}
'Programming > c언어' 카테고리의 다른 글
자료구조 - sorting (0) | 2020.04.19 |
---|---|
c언어 자료구조 - 괄호식검사 (0) | 2019.03.25 |
c언어 자료구조 - stack (0) | 2019.03.25 |
C언어 자료구조 - 링크드리스트 (0) | 2019.03.22 |
C언어 - 조건문 정리 (1) | 2017.12.18 |