School Commit Init

This commit is contained in:
2024-08-31 12:07:21 +03:00
commit 0b130ee18c
2801 changed files with 4720552 additions and 0 deletions
@@ -0,0 +1,39 @@
#include <assert.h>
#include "SortedMap.h"
#include "SMIterator.h"
#include "ShortTest.h"
#include <exception>
using namespace std;
bool relatie1(TKey cheie1, TKey cheie2) {
if (cheie1 <= cheie2) {
return true;
}
else {
return false;
}
}
void testAll(){
SortedMap sm(relatie1);
assert(sm.size() == 0);
assert(sm.isEmpty());
sm.add(1,2);
assert(sm.size() == 1);
assert(!sm.isEmpty());
assert(sm.search(1)!=NULL_TVALUE);
TValue v =sm.add(1,3);
assert(v == 2);
assert(sm.search(1) == 3);
SMIterator it = sm.iterator();
it.first();
while (it.valid()){
TElem e = it.getCurrent();
assert(e.second != NULL_TVALUE);
it.next();
}
assert(sm.remove(1) == 3);
assert(sm.isEmpty());
}