-
Notifications
You must be signed in to change notification settings - Fork 9
/
boggle.cpp
71 lines (57 loc) · 820 Bytes
/
boggle.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
#include "boggle.h"
Boggle::Boggle()
{
// TODO
}
Boggle::~Boggle()
{
// TODO
}
string Boggle::getBoardString()
{
// TODO
}
void Boggle::createRandomBoard()
{
// TODO
}
bool Boggle::importBoard(string file_name)
{
// TODO
}
bool Boggle::importDictionary(string file_name)
{
// TODO
}
void Boggle::setMinWordLength(int length)
{
// TODO
}
bool Boggle::isWord(string word)
{
// TODO
}
bool Boggle::isPrefix(string prefix)
{
// TODO
}
bool Boggle::findPrefix(string root, int start, int end, bool fullWordOnly)
{
// TODO
}
set<string> Boggle::solveBoard()
{
// TODO
}
void Boggle::findWords(string root, unordered_set<string> path, set<string>& wordsFound, int x, int y)
{
// TODO
}
void Boggle::clear()
{
// TODO
}
void Boggle::setBoard(string boardValues[SIZE][SIZE])
{
// TODO
}