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
|
#include <iostream>
#include <string>
#include <algorithm>
#include <bits/stdc++.h>
#include <stdlib.h>
#include <sstream>
#include <ctime>
#include <vector>
using namespace std;
std::vector<double> coord_x;
std::vector<double> coord_y;
std::vector<std::string > words_hori;
std::vector<std::string > words_verti;
std::vector<std::string > words;
char grid[26][26] = {
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' },
{
'.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.', '.' }
};
int random(int from, int to)
{
return rand() % (to - from + 1) + from;
}
std::string find_intersection(std::string &first, std::string &second)
{
std::sort(first.begin(), first.end());
std::sort(second.begin(), second.end());
int length = std::min(first.length(), second.length());
std::string result(length, ' ');
std::set_intersection(first.begin(), first.end(), second.begin(), second.end(), result.begin());
return result;
}
int PlaceHorizontal(int x, int y, std::string &word)
{
coord_x.push_back(x);
coord_y.push_back(y);
int taille = word.length();
for (int j = 0; j != taille; j++)
{
if (grid[x][y + j] == '.' || grid[x][y + j] == word[j])
{
grid[x][y + j] = word[j];
}
else {}
}
}
int PlaceVertical(int x, int y, std::string &word)
{
coord_x.push_back(x);
coord_y.push_back(y);
int taille = word.length();
for (int j = 0; j != taille; j++)
{
if (grid[x + j][y] == '.' || grid[x + j][y] == word[j])
{
grid[x + j][y] = word[j];
}
else {}
}
}
std::string randomword(int randomline)
{
std::string word1;
std::string ifileName = "dictionary.txt";
std::ifstream f(ifileName);
if (!f) std::cerr << "File '" << ifileName << "' couldn't opened!\n";
std::string s;
for (int i = 1; i <= randomline; i++)
{
std::getline(f, s);
word1 = s;
}
return word1;
}
int main(int argc, char *argv[])
{
string word1;
string word2;
string word3;
std::string temp1;
std::string temp2;
std::string temp3;
int x_word1_intersection;
int x_word2_intersection;
int x_word23_intersection;
int x_word32_intersection;
srand(time(0));
int x = 8;
int y = 8;
int indice1 = 0;
int indice2 = 0;
std::string intersec1;
std::string intersec;
std::string replace;
int n;
std::cout << "Number of words to be placed in the grid : " << "\n";
std::cin >> n;
int number;
for (int i = 0; i < n; i++)
{
int rand1 = random(2000, 4000);
word1 = randomword(rand1);
words.push_back(word1);
}
PlaceVertical(x, y, words[0]);
for (int i = 1; i < words.size(); i++)
{
if (i % 2 == 0)
{
temp1 = words[i - 1];
temp2 = words[i];
word2 = words[i];
intersec = find_intersection(temp1, temp2);
if (intersec.empty())
{
int rand2 = random(2000, 4000);
replace = randomword(rand2);
word2 = replace;
std::replace(words.begin(), words.end(), temp2, replace);
intersec = find_intersection(temp1, temp2);
}
words_hori.push_back(word2);
if (i < 2)
{
indice2 = 0;
}
else
{
if (intersec[0] = intersec1[0] && intersec.length() > 0)
{
if (indice1 += 1 <= intersec.length())
{
indice2 += 1;
}
}
else
{
indice2 = 0;
}
}
x_word1_intersection = word1.find_last_of(intersec[indice2]);
x_word2_intersection = word2.find_last_of(intersec[indice2]);
PlaceHorizontal(coord_x[i - 1] + x_word2_intersection, coord_y[i - 1] - x_word1_intersection, word2);
}
if (i % 2 != 0)
{
temp2 = words[i - 1];
temp3 = words[i];
word3 = words[i];
words_verti.push_back(word3);
intersec1 = find_intersection(temp2, temp3);
if (intersec1.empty())
{
int rand3 = random(2000, 4000);
replace = randomword(rand3);
word3 = replace;
std::replace(words.begin(), words.end(), temp3, replace);
intersec1 = find_intersection(temp2, temp3);
}
if (intersec[0] = intersec1[0] && intersec1.length() > 0)
{
if (indice1 += 1 <= intersec1.length())
{
indice1 += 1;
}
}
else
{
indice1 = 0;
}
x_word23_intersection = word2.find_last_of(intersec1[indice1]);
x_word32_intersection = word3.find_last_of(intersec1[indice1]);
PlaceVertical(coord_x[i - 1] - x_word23_intersection, coord_y[i - 1] + x_word32_intersection, word3);
}
}
for (int i = 0; i < 26; i++)
{
for (int j = 0; j < 26; j++)
{
std::cout << grid[i][j];
std::cout << " ";
}
std::cout << "\n";
}
words.clear();
}
| |