Merge remote-tracking branch 'origin/master'
This commit is contained in:
commit
a4adcf4c5f
|
@ -1,6 +1,8 @@
|
|||
#include <stdio.h> /* file main_mp2_FLOW_a.cpp */
|
||||
#include "../../helpers/AnsiConsole.h"
|
||||
|
||||
//TODO: verstehen
|
||||
|
||||
AnsiConsole console; int firstLine; int currentTick; Colors currentColor;
|
||||
#define INITPRINT(label) {firstLine=__LINE__;console.printText(2*currentTick,0,label,Colors::BLACK);}
|
||||
#define PRINT printLineNumber(__LINE__)
|
||||
|
@ -44,9 +46,6 @@ void test() {
|
|||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
void start_Sequence(void){
|
||||
INITPRINT("Sequence");
|
||||
PRINT;
|
||||
|
|
|
@ -1,41 +1,49 @@
|
|||
#include <stdio.h> /* file main_mp2_FLOW_a.cpp */
|
||||
#include "../../helpers/AnsiConsole.h"
|
||||
|
||||
AnsiConsole console; int firstLine; int currentTick; Colors currentColor;
|
||||
AnsiConsole console;
|
||||
int firstLine;
|
||||
int currentTick;
|
||||
Colors currentColor;
|
||||
#define INITPRINT(label) {firstLine=__LINE__;console.printText(2*currentTick,0,label,Colors::BLACK);}
|
||||
#define PRINT printLineNumber(__LINE__)
|
||||
|
||||
void printLineNumber(int lineNumber);
|
||||
|
||||
void help(int i);
|
||||
|
||||
void help2();
|
||||
|
||||
void recurse2(int i, int rounds);
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
void recurse2(int i, int rounds) {
|
||||
if (i == 0 && rounds == 2) {
|
||||
help2();
|
||||
}
|
||||
else if(i == 0 && rounds == 1) {
|
||||
} else if (i == 0 && rounds == 1) {
|
||||
recurse2(3, 0);
|
||||
} else { recurse2((i - 1), 2); }
|
||||
|
||||
}
|
||||
void help2() {PRINT;
|
||||
|
||||
void help2() {
|
||||
PRINT;
|
||||
recurse2(3, 1);
|
||||
PRINT;
|
||||
}
|
||||
|
||||
|
||||
|
||||
void recurse(int i) {
|
||||
if(i == 0) {help(2); return;}
|
||||
PRINT;recurse(i-1);
|
||||
if (i == 0) {
|
||||
help(2);
|
||||
return;
|
||||
}
|
||||
void help(int i) {if(i % 2 == 0)PRINT;
|
||||
PRINT;
|
||||
recurse(i - 1);
|
||||
}
|
||||
|
||||
void help(int i) {
|
||||
if (i % 2 == 0)PRINT;
|
||||
else {
|
||||
PRINT;
|
||||
recurse(3);
|
||||
|
@ -43,7 +51,6 @@ void help(int i) {if(i % 2 == 0)PRINT;
|
|||
}
|
||||
|
||||
|
||||
|
||||
void iterationA(int x) {
|
||||
for (int i = 0; i < 3; ++i)
|
||||
PRINT;
|
||||
|
@ -89,7 +96,6 @@ int main(int argc, const char * argv[]) {
|
|||
}
|
||||
|
||||
|
||||
|
||||
void printLineNumber(int lineNumber) {
|
||||
std::string line = std::to_string(lineNumber);
|
||||
currentTick++;
|
||||
|
|
|
@ -31,6 +31,8 @@ int main() {
|
|||
unittest_stringSimilarity();
|
||||
}
|
||||
|
||||
|
||||
//TODO: Punkte gleichmässig verteilen
|
||||
int stringSimilarity(std::string string1, std::string string2) {
|
||||
//wenn gleicher String, gleich 100 Punkte geben, spart den Rest
|
||||
if(string1 == string2) return 100;
|
||||
|
@ -56,25 +58,27 @@ int stringSimilarity(std::string string1, std::string string2) {
|
|||
//gleiche Anzahl an verschiedenen Zeichen +10 Punkte
|
||||
if(string1map.size() == string2map.size()) points += 10;
|
||||
|
||||
|
||||
//auf gleiche Zeichenanzahl testen
|
||||
//gleiche Anzahl an gleichen Zeichen
|
||||
int equalCharCount = 0;
|
||||
int equalChars = 0;
|
||||
for(std::pair<char, int> count : characterCount) {
|
||||
if(string1map[count.first] == string2map[count.second]) equalCharCount++;
|
||||
if(string1map[count.first] != 0 && string2map[count.first] != 0) equalChars++;
|
||||
//BUG: equalCharCount ist nicht immer korrekt
|
||||
if(string1map[count.first] == string2map[count.first]) equalCharCount++;//gleiche Anzahl an gleichen Zeichen
|
||||
if(string1map[count.first] != 0 && string2map[count.first] != 0) equalChars++;//Zeichen exsistiert in beiden
|
||||
}
|
||||
if(equalChars > 0) {
|
||||
points += characterCount.size() / equalChars * 10;
|
||||
}
|
||||
if(equalCharCount > 0) {
|
||||
points += characterCount.size() / equalCharCount;
|
||||
std::cout << "equalCharCount = " << equalCharCount << std::endl;
|
||||
}
|
||||
|
||||
|
||||
|
||||
//TODO: Punkte für gleiche Buchstaben und gleiche Buchstaben Anzahl vergeben
|
||||
|
||||
|
||||
|
||||
return points;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue