12.4.2 크루스칼 알고리즘 소스 코드
다음은 앞에서 작성한 크루스칼 알고리즘 소스 코드입니다.
//Edge.h
#pragma once
#include <string>
using namespace std;
class Edge
{
string vt1;
string vt2;
int weight;
public:
Edge(string vt1,string vt2,int height);
bool Exist(string vt)const;
bool Exist(string vt1, string vt2)const;
string Other(string vt)const;
void View()const;
int GetWeight()const;
string GetVt1()const;
string GetVt2()const;
};
//Edge.cpp
#include "Edge.h"
#include <iostream>
using namespace std;
Edge::Edge(string vt1,string vt2,int weight)
{
this->vt1 = vt1;
this->vt2 = vt2;
this->weight = weight;
}
bool Edge::Exist(string vt)const
{
return (vt1 == vt)||(vt2==vt);
}
bool Edge::Exist(string vt1, string vt2)const
{
return Exist(vt1) && Exist(vt2);
}
string Edge::Other(string vt)const
{
if(vt1 == vt)
{
return vt2;
}
if(vt2 == vt)
{
return vt1;
}
return "";
}
void Edge::View()const
{
cout<<"("<<vt1<<","<<vt2<<","<<weight<<")";
}
int Edge::GetWeight()const
{
return weight;
}
string Edge::GetVt1()const
{
return vt1;
}
string Edge::GetVt2()const
{
return vt2;
}
//Graph.h
#pragma once
#include "Edge.h"
#include <iostream>
#include <vector>
using namespace std;
typedef vector<string> Vertexs;
typedef Vertexs::iterator VIter;
typedef Vertexs::const_iterator CVIter;
typedef vector<Edge *> Edges;
typedef Edges::iterator EIter;
typedef Edges::const_iterator CEIter;
class Graph
{
Vertexs vertexs;
Edges edges;
public:
~Graph(void);
bool AddVertex(string vt);
bool Exist(string vt)const;
bool AddEdge(string vt1, string vt2,int weight);//간선 추가
bool Exist(string vt1,string vt2)const;
void ViewNeighbors()const;
void ViewNeighbor(string vt)const;
int GetVertexCount()const;
Edges GetEdges()const;
string GetFirstVertex()const;
void Merge(Graph *graph);
};
//Graph.cpp
#include "Graph.h"
#include <string.h>
#include <algorithm>
Graph::~Graph(void)
{
EIter seek = edges.begin();
EIter last = edges.end();
for( ;seek != last; ++seek)
{
delete (*seek);//간선 소멸
}
}
bool Graph::AddVertex(string vt)
{
if(Exist(vt))
{
return false;
}
vertexs.push_back(vt);
return true;
}
bool Graph::Exist(string vt)const
{
return find(vertexs.begin(),vertexs.end(),vt) != vertexs.end();
}
bool Graph::AddEdge(string vt1, string vt2,int weight)//간선 추가
{
if(Exist(vt1)&&Exist(vt2))
{
if(Exist(vt1,vt2))
{
return false;
}
CEIter seek = edges.begin();
CEIter last = edges.end();
for( ;seek != last; ++seek)
{
if((*seek)->GetWeight()>weight)
{
break;
}
}
edges.insert(seek,new Edge(vt1,vt2,weight));
return true;
}
return false;
}
bool Graph::Exist(string vt1,string vt2)const
{
CEIter seek = edges.begin();
CEIter last = edges.end();
for( ;seek != last; ++seek)
{
if((*seek)->Exist(vt1,vt2))
{
return true;
}
}
return false;
}
void Graph::ViewNeighbors()const
{
cout<<"=== 이웃 정점 ==="<<endl;
CVIter seek = vertexs.begin();
CVIter last = vertexs.end();
for( ;seek != last; ++seek)
{
cout<<(*seek)<<"의 이웃: ";
ViewNeighbor(*seek);//i정점의 이웃 보여주기
}
cout<<endl;
}
void Graph::ViewNeighbor(string vt)const
{
CEIter seek = edges.begin();
CEIter last = edges.end();
for( ;seek != last; ++seek)
{
if((*seek)->Exist(vt))
{
cout<<(*seek)->Other(vt)<<" ";
}
}
cout<<endl;
}
int Graph::GetVertexCount()const
{
return vertexs.size();
}
Edges Graph::GetEdges()const
{
return edges;
}
string Graph::GetFirstVertex()const
{
if(vertexs.size()==0)
{
return "";
}
return vertexs[0];
}
void Graph::Merge(Graph *graph)
{
VIter seek = graph->vertexs.begin();
VIter last = graph->vertexs.end();
for( ;seek != last; ++seek)
{
AddVertex(*seek);
}
EIter eseek = graph->edges.begin();
EIter elast = graph->edges.end();
for( ;eseek != elast; ++eseek)
{
AddEdge((*eseek)->GetVt1(),(*eseek)->GetVt2(),(*eseek)->GetWeight());
}
}
//Kruscal.h
#pragma once
#include "Graph.h"
typedef vector<Graph *> Graphs;
typedef Graphs::iterator GIter;
class Kruscal
{
Graph *graph;
Graphs graphs;
Edges edges;
int secnt;//선택한 간선 개수
public:
Kruscal(Graph *graph);
Graph *MakeMSTree();
private:
bool SelectEdge();
bool IsGreedyEdge();
};
//Kruscal.cpp
#include "Kruscal.h"
Kruscal::Kruscal(Graph *graph)
{
this->graph = graph;
}
Graph *Kruscal::MakeMSTree()
{
cout<<"크루스칼 알고리즘 시작"<<endl;
secnt = 0;
edges = graph->GetEdges();
int v_mone = graph->GetVertexCount()-1;
while(secnt < v_mone)
{
if(SelectEdge() == false)
{
break;
}
secnt++;
}
if(secnt < v_mone)
{
cout<<"고립 상태의 영역이 있어서 최소 신장 트리를 만들 수 없습니다."<<endl;
return 0;
}
return (*graphs.begin());
}
bool Kruscal::SelectEdge()
{
while(edges.size()>0)
{
if(IsGreedyEdge())
{
return true;
}
}
return false;
}
bool Kruscal::IsGreedyEdge()
{
Edge *edge = (*edges.begin());
GIter seek = graphs.begin();
GIter last = graphs.end();
string vt1 = edge->GetVt1();
string vt2 = edge->GetVt2();
Graph *graph_a=0;
for( ;seek != last; ++seek)
{
if((*seek)->Exist(vt1)&&(*seek)->Exist(vt2))
{
edges.erase(edges.begin());
return false;
}
if((*seek)->Exist(vt1)||(*seek)->Exist(vt2))
{
if(graph_a == 0)
{
graph_a = (*seek);
}
else
{
break;
}
}
}
cout<<"선택한 간선: ";
edge->View();
cout<<endl;
if(graph_a == 0)
{
graph_a = new Graph();
graphs.push_back(graph_a);
}
else
{
if(seek != last)
{
graph_a->Merge(*seek);
delete (*seek);
graphs.erase(seek);
}
}
graph_a->AddVertex(vt1);
graph_a->AddVertex(vt2);
graph_a->AddEdge(vt1,vt2,edge->GetWeight());
return true;
}
//Program.cpp
#include "Kruscal.h"
int main()
{
Graph *graph = new Graph();//그래프 동적 생성
graph->AddVertex("A");
graph->AddVertex("B");
graph->AddVertex("C");
graph->AddVertex("D");
graph->AddVertex("E");
graph->AddVertex("F");
graph->AddVertex("G");
graph->AddVertex("H");
graph->AddEdge("A","B",5);
graph->AddEdge("A","D",3);
graph->AddEdge("A","E",4);
graph->AddEdge("B","D",3);
graph->AddEdge("B","H",2);
graph->AddEdge("C","D",3);
graph->AddEdge("C","G",4);
graph->AddEdge("D","H",5);
graph->AddEdge("D","E",3);
graph->AddEdge("D","F",3);
graph->AddEdge("E","F",2);
graph->AddEdge("F","G",6);
graph->AddEdge("G","H",3);
graph->ViewNeighbors();
Kruscal *kruscal = new Kruscal(graph);
Graph *mstree = kruscal->MakeMSTree();
if(mstree)
{
cout<<"최소 신장 트리 만들기 성공"<<endl;
mstree->ViewNeighbors();
delete mstree;
}
delete kruscal;
delete graph;
return 0;
}
이상으로 자료구조와 알고리즘 C++ 을 마칠게요. 모두 훌륭한 엔진니어가 되시길 소망합니다.
'언어 자료구조 알고리즘 > [C++]디딤돌 자료구조와 알고리즘' 카테고리의 다른 글
12.4.1 크루스칼 알고리즘 구현 [디딤돌 자료구조와 알고리즘 with C++] (0) | 2016.04.14 |
---|---|
12.4 크루스칼 알고리즘 [디딤돌 자료구조와 알고리즘 with C++] (0) | 2016.04.14 |
12.3.2 프림 알고리즘 소스 코드 [디딤돌 자료구조와 알고리즘 with C++] (0) | 2016.04.14 |
12.3.1 프림 알고리즘 구현 [디딤돌 자료구조와 알고리즘 with C++] (0) | 2016.04.14 |
12.3 프림 알고리즘 [디딤돌 자료구조와 알고리즘 with C++] (0) | 2016.04.14 |
12.2 SJF 알고리즘 [디딤돌 자료구조와 알고리즘 with C++] (0) | 2016.04.14 |
12.1 거스름 돈 [디딤돌 자료구조와 알고리즘 with C++] (0) | 2016.04.14 |
12. 탐욕 알고리즘 [디딤돌 자료구조와 알고리즘 with C++] (0) | 2016.04.14 |
11.3.2 다익스트라 알고리즘 코드 [디딤돌 자료구조와 알고리즘 with C++] (0) | 2016.04.12 |
11.3.1 다익스트라 알고리즘 구현 [디딤돌 자료구조와 알고리즘 with c++] (0) | 2016.04.12 |