-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDynamic.h
More file actions
50 lines (28 loc) · 736 Bytes
/
Dynamic.h
File metadata and controls
50 lines (28 loc) · 736 Bytes
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
#ifndef DYNAMIC_H
#define DYNAMIC_H
class Dynamic {
public:
static void binary_tree_counter();
static void minimum_manipulate();
static void triangle();
static void binaryTree();
static void three_num_counter();
static void maze_compression();
static void container();
static void partition();
static void rotate();
static void multiply_4();
static void achive();
static void quick_multiply();
static void package();
static void sub_matrix();
static void bit_count();
static void different_way();
static void rope_range();
static void apple();
static void winner();
static void color();
static void snake();
private:
};
#endif