---
# System prepended metadata

title: SES4

---

- [BTTL](#BTTL)
- [BTVN](#BTVN)

---


# BTTL

- ## #include <initializer_list>
  - size()
  - printlist()
- ## #include <unordered_map>
  - at()
  - count()
- ## #include <unordered_set>
  - insert()
  - find()
- ## #include <algorithm>
  - sort()
  - binary_search()
- ## #include <iostream>
  - cin
  - cout
- ## #include <valarray>
  - sum()
  - max(), min()
- ## #include <cstring>
  - strlen()
  - strstr()
- ## #include <numeric>
  - sqrt()
  - accumulate()
- ## #include <iomanip>
  - setprecision()
  - setfill()
- ## #include <complex>
  - abs()
  - real()
- ## #include <sstream>
  - clear()
  - str()
- ## #include <cassert>
  - static_assert()
  - assert()
- ## #include <random>
  - rand()
  - srand()
- ## #include <chrono>
  - system_clock
  - high_resolution_clock
- ## #include <vector>
  - pop_back()
  - resize()
- ## #include <cstdio>
  - fopen()
  - freopen()
- ## #include <bitset>
  - set()
  - test(pos)
- ## #include <array>
  - fill()
  - get()
- ## #include <queue>
  - push()
  - pop()
- ## #include <deque>
  - shrink_to_fit()
  - max_size()
- ## #include <stack>
  - top()
  - pop()
- ## #include <cmath>
  - round()
  - tan()
- ## #include <tuple>
  - make_tuple()
  - tuple_size
- ## #include <regex>
  - basic_regex
  - match_results
- ## #include <list>
  - advance()
  - next()
- ## #include <set>
  - insert()
  - find()
- ## #include <map>
  - begin()
  - end()
    
    
# BTVN
- Kiểu dữ liệu: char
  - Giá trị nhỏ nhất: -128
  - Giá trị lớn nhất: 127
  - Số bit: 8 bit
  - Số trạng thái: 2^8
 

- Kiểu dữ liệu: unsigned char
  - Giá trị nhỏ nhất: 0
  - Giá trị lớn nhất: 255
  - Số bit: 8 bit
  - Số trạng thái: 2^8
 
- Kiểu dữ liệu: short
  - Giá trị nhỏ nhất: -32,768
  - Giá trị lớn nhất: 32,767
  - Số bit: 16 bit
  - Số trạng thái: 2^16
 

- Kiểu dữ liệu: unsigned short
  - Giá trị nhỏ nhất: 0
  - Giá trị lớn nhất: 65,535
  - Số bit: 16 bit
  - Số trạng thái: 2^16
 
- Kiểu dữ liệu: int
  - Giá trị nhỏ nhất: -2,147,483,648
  - Giá trị lớn nhất: 2,147,483,647
  - Số bit: 32 bit
  - Số trạng thái: 2^32
 
- Kiểu dữ liệu: unsigned int
  - Giá trị nhỏ nhất: 0
  - Giá trị lớn nhất: 4,294,967,295
  - Số bit: 32 bit
  - Số trạng thái: 2^32
 
- Kiểu dữ liệu: long long
  - Giá trị nhỏ nhất: -9,223,372,036,854,775,808
  - Giá trị lớn nhất: 9,223,372,036,854,775,807
  - Số bit: 64 bit
  - Số trạng thái: 2^64
 
- Kiểu dữ liệu: unsigned long long
  - Giá trị nhỏ nhất: 0
  - Giá trị lớn nhất: 18,446,744,073,709,551,615
  - Số bit: 64 bit
  - Số trạng thái: 2^64

- Kiểu dữ liệu: float
  - Giá trị nhỏ nhất: −3.4×10^38
  - Giá trị lớn nhất: 3.4×10^38
  - Số bit: 32 bit
  - Số trạng thái: 2^32
 
- Kiểu dữ liệu: double
  - Giá trị nhỏ nhất: −1.7×10^308
  - Giá trị lớn nhất: 1.7×10^308
  - Số bit: 64 bit
  - Số trạng thái: 2^64
 
- Kiểu dữ liệu: bool
  - Giá trị nhỏ nhất: false (0)
  - Giá trị lớn nhất: true (1)
  - Số bit: Thường là 8 bit
  - Số trạng thái: 2    
    