Browse Source

i fixed all the things :)

Tareef 7 years ago
parent
commit
3e05f3520a
3 changed files with 2 additions and 4 deletions
  1. 2 4
      source1.h
  2. BIN
      test.exe
  3. BIN
      test.obj

+ 2 - 4
source1.h

@@ -50,7 +50,6 @@ class Triehard // compressed binary trie
 				{
 					delete left;
 					delete right;
-					delete this;
 				}
 			
 				int getMag()
@@ -151,7 +150,6 @@ class Triehard // compressed binary trie
 		{
 			delete left;
 			delete right;
-			delete this;
 		}
 		
 		/*
@@ -179,7 +177,6 @@ class Triehard // compressed binary trie
 			if (curnode->getFlag())
 			{
 				int len = chars->size();
-				cout << "This is the size: "  << len << endl;
 				
 				for (int i = 0; i < len; i++)
 				{
@@ -486,6 +483,7 @@ class Triehard // compressed binary trie
 			
 			int curmag = curnode->getMag();
 			
+			cout << "loop starting" << endl;
 			for (int i = 0; i < len; i++) // each iteration checks the current character for accuracy. it does not prepare for the next character like the preamble
 			{
 				if (val[i]) // if next digit is 1
@@ -608,7 +606,7 @@ class Triehard // compressed binary trie
 				}
 				else
 				{
-					delete curnode;
+					delete curnode; // do not finish this step
 					prevnode->copyLeft(nullptr);
 				}
 			}

BIN
test.exe


BIN
test.obj