-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main.cpp
350 lines (336 loc) · 9.42 KB
/
Main.cpp
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
// Main.cpp: implementation of the CMain class.
// CMain类实现文件
// 作者:刘志良
// 最后修改日期:2003年12月8日
////////////////////////////////////////////////
#include "stdafx.h"
#include "AI3.h"
#include "Main.h"
#include "math.h"
//////////////
// 构造函数
//////////////
CMain::CMain()
{
}
//////////////
// 析构函数
//////////////
CMain::~CMain()
{
if(this->m_DispList.GetCount() >0)
this->m_DispList.RemoveAll();
}
/////////////////////////////////////////
// LoadData:载入数据
// 生成当前操作状态
// 并将当状态加入搜索树中
/////////////////////////////////////////
BOOL CMain::LoadData(BOOL Adv)
{
if(Adv == false)
{
CInitDialog InitDlg;
if(InitDlg.DoModal()==IDOK)
{
CDisplay *DispItem;DispItem = new CDisplay;
m_CurrentG = 0;
for(int i=0; i<MaxItem; i++)
for(int j=0; j<MaxItem; j++)
{
this->m_Desc[i][j] = InitDlg.GetDescData(i,j);
this->m_Data[i][j] = InitDlg.GetSrcData(i,j);
DispItem->LoadData(m_Data[i][j],i,j);
}
DispItem->SetNoteType(AlReady);
DispItem->SetThisIsAAnswer();
DispItem->SetCurrentG(m_CurrentG);
DispItem->SetCurrentCount(0);
m_CurOpItem = DispItem;
m_DispList.AddTail(DispItem);
return TRUE;
}
else return FALSE;
}
else
{
CInputAdvDlg InitDlg;
if(InitDlg.DoModal()==IDOK)
{
CDisplay *DispItem;DispItem = new CDisplay;
m_CurrentG = 0;
for(int i=0; i<MaxItem; i++)
for(int j=0; j<MaxItem; j++)
{
this->m_Desc[i][j] = InitDlg.GetDescData(i,j);
this->m_Data[i][j] = InitDlg.GetSrcData(i,j);
DispItem->LoadData(m_Data[i][j],i,j);
}
DispItem->SetNoteType(AlReady);
DispItem->SetThisIsAAnswer();
DispItem->SetCurrentG(m_CurrentG);
DispItem->SetCurrentCount(0);
m_CurOpItem = DispItem;
m_DispList.AddTail(DispItem);
return TRUE;
}
else return FALSE;
}
}
////////////////////////////////////
// GenerateMoveFlag : 穷举空白位的移动方式
// 同时记录共几种移动方式
///////////////////////////////////
void CMain::GenerateMoveFlag()
{
Position BlankPosition = m_CurOpItem->GetBlankPosition();
/* 这里本来要加入空白位是否存在的判断,但在本程序的
中便用的数据,空白位始终存在
*/
m_iMoveFlagCount = 0;
if(BlankPosition == Position(0,0))
{//空白位在(0,0)
m_iMoveFlag[MoveUp] = FALSE;m_iMoveFlag[MoveRight] = TRUE;
m_iMoveFlag[MoveDown] = TRUE;m_iMoveFlag[MoveLeft] = FALSE;
m_iMoveFlagCount = 2;
}
else if(BlankPosition == Position(0,MaxItem-1))
{//空白位在(0,MaxItem-1)
m_iMoveFlag[MoveUp] = FALSE;m_iMoveFlag[MoveRight] = FALSE;
m_iMoveFlag[MoveDown] = TRUE;m_iMoveFlag[MoveLeft] = TRUE;
m_iMoveFlagCount = 2;
}
else if(BlankPosition == Position(MaxItem-1,0))
{//空白位在(MaxItem-1,0)
m_iMoveFlag[MoveUp] = TRUE;m_iMoveFlag[MoveRight] = TRUE;
m_iMoveFlag[MoveDown] = FALSE;m_iMoveFlag[MoveLeft] = FALSE;
m_iMoveFlagCount = 2;
}
else if(BlankPosition == Position(MaxItem-1,MaxItem-1))
{//空白位在(MaxItem-1,MaxItem-1)
m_iMoveFlag[MoveUp] = TRUE;m_iMoveFlag[MoveRight] = FALSE;
m_iMoveFlag[MoveDown] = FALSE;m_iMoveFlag[MoveLeft] = TRUE;
m_iMoveFlagCount = 2;
}
else if(BlankPosition.x>0 && BlankPosition.x<MaxItem-1 && BlankPosition.y==0)
{//空白位在第一列除(0,0)与(MaxItem-1,0)
m_iMoveFlag[MoveUp] = TRUE;m_iMoveFlag[MoveRight] = TRUE;
m_iMoveFlag[MoveDown] = TRUE;m_iMoveFlag[MoveLeft] = FALSE;
m_iMoveFlagCount = 3;
}
else if(BlankPosition.x>0 && BlankPosition.x<MaxItem-1 && BlankPosition.y==MaxItem-1)
{//空白位在第MaxItem列除(0,MaxItem-1)与(MaxItem-1,MaxItem-1)
m_iMoveFlag[MoveUp] = TRUE;m_iMoveFlag[MoveRight] = FALSE;
m_iMoveFlag[MoveDown] = TRUE;m_iMoveFlag[MoveLeft] = TRUE;
m_iMoveFlagCount = 3;
}
else if(BlankPosition.y>0 && BlankPosition.y<MaxItem-1 && BlankPosition.x==0)
{//空白位在第一行除(0,0)与(0,MaxItem-1)
m_iMoveFlag[MoveUp] = FALSE;m_iMoveFlag[MoveRight] = TRUE;
m_iMoveFlag[MoveDown] = TRUE;m_iMoveFlag[MoveLeft] = TRUE;
m_iMoveFlagCount = 3;
}
else if(BlankPosition.y>0 && BlankPosition.y<MaxItem-1 && BlankPosition.x==MaxItem-1)
{//空白位在第MaxItem行 除(MaxItem-1,0)与(MaxItem-1,MaxItem-1)
m_iMoveFlag[MoveUp] = TRUE;m_iMoveFlag[MoveRight] = TRUE;
m_iMoveFlag[MoveDown] = FALSE;m_iMoveFlag[MoveLeft] = TRUE;
m_iMoveFlagCount = 3;
}
else
{
m_iMoveFlag[MoveUp] = TRUE;m_iMoveFlag[MoveRight] = TRUE;
m_iMoveFlag[MoveDown] = TRUE;m_iMoveFlag[MoveLeft] = TRUE;
m_iMoveFlagCount = 4;
}
}
//////////////////////////////////
//GenerateChild: 生成子节点
// 返回值:生成子节点过程中的错误代码
//////////////////////////////////
UINT CMain::GenerateChild()
{
List ChildList;
int m=0;
for(int k=0; k<4; k++)
{
if(m_iMoveFlag[k] == false) continue;
CDisplay *Tmp;Tmp = new CDisplay;
for(int i=0; i<MaxItem; i++)
for(int j=0; j<MaxItem; j++)
Tmp->LoadData(m_CurOpItem);
Tmp->SetCurrentG(m_CurrentG);
Tmp->SetCurrentCount(m++);
Tmp->SetNoteType(NotYet);
Tmp->MoveBlank(k);
ChildList.AddTail(Tmp);
}
return FindBestMoveFlag(&ChildList);
}
///////////////////////////////////////////
// FindBestMoveFlag:寻找最佳移动方式 并移动之
// 入口: GenerateChild();
// 参数:子节点集
// 返回值:错误代码
//////////////////////////////////////////
UINT CMain::FindBestMoveFlag(List *pList)
{
//计算移动后是否有重复项 重复项不参加最佳选择运算
IsReadyExist(pList);
//在没有出现过移动结果中选择最佳解
POSITION Pos = pList->GetHeadPosition();
int H[4]={65535,65535,65535,65535},i=0,Min = 65535;
POSITION MinPos;
while(Pos)
{
POSITION CurPos = Pos;
CDisplay *Item = (CDisplay *)pList->GetNext(Pos);
if(Item->GetNoteType() == AlReady) {i++;continue;}
H[i] = CaculateH(Item);
if(Min>H[i]) {Min=H[i];MinPos = CurPos;}
i++;
}
if(Min == 65535)
{/*
//没有找到最佳方法 表示这个结点所有子项都已扩展。要回溯
//但在本程序中 由于输入值一定有解,可以不要回溯
for(int CurrentG = this->m_CurrentG;CurrentG>0;CurrentG--)
if(FindOtherNote(CurrentG)) return NoError;//找到了另一个未扩展的结点返回
*/
return ErrorCode;//没有未扩展的结点了 本题无解
}
//标记最佳解
Pos = pList->GetHeadPosition();
while(Pos)
{
POSITION CurPos = Pos;
CDisplay *Item = (CDisplay *)m_DispList.GetNext(Pos);
if(CurPos == MinPos)
{
Item->SetThisIsAAnswer();//是解
Item->SetNoteType(AlReady);//被扩展
m_CurOpItem = Item;
}
m_DispList.AddTail(Item);
}
return NoError;
}
//////////////////////////////////////
// IsReadyExist: 是否已经存在
// 如果已经存在则设标记为已存在
// 入口: FindBestMoveFlag()
// 参数:子节点集起始位置指针
//////////////////////////////////////
void CMain::IsReadyExist(List *pList)
{
POSITION PosSrc = pList->GetHeadPosition();
while(PosSrc)
{
POSITION CurPos = PosSrc;
CDisplay *ItemSrc = (CDisplay *)pList->GetNext(PosSrc);
POSITION PosDesc = m_DispList.GetHeadPosition();
while(PosDesc)
{
CDisplay *ItemDesc = (CDisplay *)m_DispList.GetNext(PosDesc);
if(ItemSrc->IsEqual(ItemDesc))
{//已经存在于第i个结果上
ItemSrc->SetNoteType(Cannot);
m_DispList.AddTail(ItemSrc);
pList->RemoveAt(CurPos);
break;
}
}
}
}
////////////////////////////////////
// CaculateH:计算当前H值
// 参数:当前节点
// 返回值:H值
////////////////////////////////////
int CMain::CaculateH(CDisplay *Item)
{
DataType Src[MaxItem][MaxItem];
for(int i=0; i<MaxItem; i++)
for(int j=0; j<MaxItem; j++)
Src[i][j] = Item->GetDispData(i,j);
int Hop = 0;
for(i=0; i<MaxItem; i++)
for(int j=0; j<MaxItem; j++)
{
if(Src[i][j] == m_Desc[i][j]) continue;
if(Src[i][j] == 0 ) continue;
else
{
int Hhop = Scan(Src[i][j], Position(i,j));
if(Hhop == 65535) return 65535;
Hop += Hhop;
}
}
return Hop;
}
//////////////////////////////////////////////
// Scan: 扫描 计算H值的辅助函数
// 入口:CaculateH()
// 参数:i的位置,与i的值
// 返回值:H(i)的值
//////////////////////////////////////////////
int CMain::Scan(DataType Desc,Position Srcpos)
{
Position Descpos;
for(int i=0;i<MaxItem;i++)
for(int j=0;j<MaxItem;j++)
{
if(this->m_Desc[i][j] == Desc)
{
Descpos = Position(i,j);
return (int)fabs(Descpos.x - Srcpos.x)
+(int)fabs(Descpos.y-Srcpos.y);
}
}
return 65535;
}
///////////////////////////////////////
// FindOtherNote: 用于回溯 寻找另一个节点
// 参数:当前G值
// 返回值:是否找到新节点
///////////////////////////////////////
BOOL CMain::FindOtherNote(int CurrentG)
{
POSITION pos = m_DispList.GetTailPosition();
while(pos)
{
CDisplay *Item = (CDisplay *)m_DispList.GetPrev(pos);
if(Item->GetCurrentG() != CurrentG) continue;//没有到当前层
if(Item->GetNoteType() != NotYet) continue;//当前结点不是没有被扩展的结点
m_CurOpItem = Item;
return TRUE;
}
return FALSE;
}
///////////////////////////////////////////
// GetResultListPoint: 得到搜索树树根的指针
// ////////////////////////////////////////
List * CMain::GetResultListPoint()
{
while(1)
{
if(m_DispList.GetCount() >= MaxNote)
{
HWND hWnd = AfxGetApp()->GetMainWnd()->GetSafeHwnd();
PostMessage(hWnd,WM_ERROR,0,ErrorCode1);
return &m_DispList;
}
if(CaculateH(m_CurOpItem) == 0)
{
HWND hWnd = ::AfxGetApp()->GetMainWnd()->GetSafeHwnd();
PostMessage(hWnd,WM_ERROR,0,NoError);
return &m_DispList;
}
GenerateMoveFlag();
m_CurrentG++;
if(GenerateChild() == NoError) continue;
HWND hWnd = ::AfxGetApp()->GetMainWnd()->GetSafeHwnd();
PostMessage(hWnd,WM_ERROR,0,ErrorCode);
break;
}
return NULL;
}