-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathhillclimbing.py
83 lines (68 loc) · 2.62 KB
/
hillclimbing.py
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
import copy
visited_states = []
# heuristic fn - number of misplaced blocks as compared to goal state
def heuristic(curr_state,goal_state):
goal_=goal_state[3]
val=0
for i in range(len(curr_state)):
check_val=curr_state[i]
if len(check_val)>0:
for j in range(len(check_val)):
if check_val[j]!=goal_[j]:
# val-=1
val-=j
else:
# val+=1
val+=j
return val
# generate next possible solution for the current state
def generate_next(curr_state,prev_heu,goal_state):
global visited_states
state = copy.deepcopy(curr_state)
for i in range(len(state)):
temp = copy.deepcopy(state)
if len(temp[i]) > 0:
elem = temp[i].pop()
for j in range(len(temp)):
temp1 = copy.deepcopy(temp)
if j != i:
temp1[j] = temp1[j] + [elem]
if (temp1 not in visited_states):
curr_heu=heuristic(temp1,goal_state)
# if a better state than previous state of found
if curr_heu>prev_heu:
child = copy.deepcopy(temp1)
return child
# no better soln than current state is possible
return 0
def solution_(init_state,goal_state):
global visited_states
# checking if initial state is already the final state
if (init_state == goal_state):
print (goal_state)
print("solution found!")
return
current_state = copy.deepcopy(init_state)
# loop while goal is found or no better optimal solution is possible
while(True):
# add current state to visited to avoid repetition
visited_states.append(copy.deepcopy(current_state))
print(current_state)
prev_heu=heuristic(current_state,goal_state)
# generate possible better child from current state
child = generate_next(current_state,prev_heu,goal_state)
# No more better states are possible
if child==0:
print("Final state - ",current_state)
return
# change current state to child
current_state = copy.deepcopy(child)
def solver():
# maintaining a global visited to save all visited and avoid repetition & infinite loop condition
global visited_states
# inputs
init_state = [[],[],[],['B','C','D','A']]
goal_state = [[],[],[],['A','B','C','D']]
# goal_state = [[],[],[],['A','D','C','B']]
solution_(init_state,goal_state)
solver()