-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathminimax.cpp
48 lines (34 loc) · 1.09 KB
/
minimax.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
#include <bits/stdc++.h>
using namespace std;
/*finding maximum score that
*
* maximizing player can get
*
*/
int minimax(int depth, int nodeIndex, bool isMax, int scores[], int h){
//depth -> current depth in game tree
//nodeIndex -> index of current node in scores[]
//isMax -> is true if current move is of maximizer, else false
//scores[] -> stores leaves of game tree
//h -> is maximum height of game tree
//if leaf node is reached(terminating condition)
if(depth == h) return scores[nodeIndex];
if(isMax) {
return max(minimax(depth+1, nodeIndex*2, false, scores, h), minimax(depth+1, nodeIndex*2 + 1, false, scores, h));
}
else {
return min(minimax(depth+1, nodeIndex*2, true, scores, h), minimax(depth+1, nodeIndex*2 + 1, true, scores, h));
}
}
int log2(int n){
if(n==1) return 0;
return 1+log2(n/2);
}
int main(){
int scores[] = {3, 5, 2, 9}; //scores[] -> stores leaves of game tree
int n = sizeof(scores)/sizeof(scores[0]);
int hight = log2(n);
int res = minimax(0, 0, true, scores, hight);
cout<<"The optimal value is : "<<res<<endl;
return 0;
}