-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCppHeaders.cpp
48 lines (45 loc) · 1.55 KB
/
CppHeaders.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
#include <algorithm> // std::fill_n, sort, iter_swap, swap
#include <bitset>
#include <cassert> // assert
#include <chrono> // time_since_epoch()
#include <climits> // INT_MAX, INT_MIN, numeric_limits
#include <cmath> // ciel
#include <condition_variable>
#include <cstdio>
#include <ctime> // time
#define __STDC_LIMIT_MACROS // std::numeric_limits<std::int32_t>::max();
#include <cstdint> // std::numeric_limits<std::int32_t>::max();
#include <cstdio>
#include <cstdlib>
#include <cstring> // memset, strlen, memcmp, memcpy
#include <deque>
#include <fstream>
#include <functional> // Contains function for hash, std::function, reference_wrapper
#include <iomanip>
#include <iostream>
#include <iterator>
#include <limits>
#include <list> // Double Linked List
#include <map>
#include <memory> // unique_ptr
#include <mutex>
#include <new> // std::bad_alloc
#include <pthread.h>
#include <queue> // Priority Queue
#include <set>
#include <sstream> // stringstream, ostringstream
#include <stack>
#include <stdexcept> // Standard exceptions like invalid_argument
#include <stdint.h> // To include the "uintptr_t
#include <string>
#include <strstream>
#include <thread>
#include <typeinfo> // typeid
#include <unistd.h> // To include sleep
#include <unordered_map>
#include <vector>
int main()
{
cout << endl;
return 0;
}