更新main

This commit is contained in:
邹晓航
2015-01-06 13:43:38 +08:00
parent 32598fe76c
commit 27cfb499a2

View File

@@ -0,0 +1,25 @@
#include <iostream>
#include "Algorithm.h"
#include "String.h"
#include "Vector.h"
#include "Profiler\Profiler.h"
#include "AVLTree.h"
#include "BinarySearchTree.h"
#include "CircularBuffer.h"
#include "Deque.h"
#include "List.h"
#include "Queue.h"
#include "Stack.h"
using namespace std;
using namespace TinySTL::Profiler;
int main(){
TinySTL::string str1("Hello World\n"), str2("This is TinySTL");
std::cout << (str1 + str2) << std::endl;
system("pause");
return 0;
}