-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.cpp
85 lines (67 loc) · 2.1 KB
/
main.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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
#include <iostream>
#include "IntervalMap.h"
#include "MatrixCommonElement.h"
#include "ExpressionTree.h"
#include "GenericLLC.h"
#include "XORLinkListSET1.h"
#include "SegmentTree.h"
#include "RangeMinimumQuery.h"
#include "LazyPropogationInSegmentTree.h"
#include "ST_Persistency.h"
#include "LongestPrefixMatching.h"
#include <ReverseDNSLookUp.h>
#include <ForwardDNSLookupCache.h>
#include <BinaryIndexedTreeFenwick.h>
#include <D2BinaryIndexTree.h>
#include <BITRangeUpdate.h>
#include <SuffixArrayIntroduction.h>
#include <QuickSort.h>
#include <SpanTest.h>
#include <RandomInRange.h>
#include <OptionalTest.h>
#include <romanTest.h>
#include <TruckLoadBox.h>
#include "Polymorphism/pTestRun.h"
#include "Movesemantics/Movesemantics.h"
#include "FuctionPointerLamda/Optimum.h"
#include "FuctionPointerLamda/FPLamdaTest.h"
//#include <UkkonenSuffixTree.h>
int main()
{
STSumofGivenRange* sgr = new STSumofGivenRange();
sgr->Run();
delete sgr;
LongestPrefixMatching::TrieTest *tt = new LongestPrefixMatching::TrieTest();
tt->Run();
delete tt;
ReverseDNSLookup::TrieTest *rdtest = new ReverseDNSLookup::TrieTest();
rdtest->Run();
delete rdtest;
std::cout << std:: endl;
ForwardDNSLookupCache::trieTest* fdtest = new ForwardDNSLookupCache::trieTest();
fdtest->Run();
delete fdtest;
BinartIndexTreeStructure::BinaryIndexedTreeTest* bitt = new BinartIndexTreeStructure::BinaryIndexedTreeTest();
bitt->Run();
delete bitt;
TwoDimansionalBITFenwickTree::Fenwick2DTest* f2dtest = new TwoDimansionalBITFenwickTree::Fenwick2DTest();
f2dtest->Run();
delete f2dtest;
BITRangeUpdate::BITRUTest* test = new BITRangeUpdate::BITRUTest();
test->Run();
delete test;
SuffixArrayINTRO::SuffixArrayTest* t = new SuffixArrayINTRO::SuffixArrayTest();
t->Run();
delete t;
QuickSort::Run();
SpanTest::Run();
RandomInRange::Run();
OT::Run;
RomanTest::Run();
TruckLoadBox::Run();
std::cout << std::endl;
Polymorphism::Run();
Movesemantics::Run();
FuctionPointerLamda::Run();
return 0;
}