-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.cpp
46 lines (46 loc) · 1.01 KB
/
test.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
//#pragma clang diagnostic push
//#pragma ide diagnostic ignored "modernize-loop-convert"
//#pragma ide diagnostic ignored "modernize-use-auto"
////
//// Created by kosti_0b5rpb8 on 23/6/2023.
////
//#include <iostream>
//#include <vector>
//#include "base.h"
//
//using namespace std;
//
//int main() {
// struct node {
// int value;
//
// explicit node(int i) : value(i) {}
// };
//
// LList<Base_Link> lst;
// for (int i = 0; i < 3; i++) lst.Add_Node(new Base_Link());
//
//// for (lst.Reset_To_Head(); lst.Curr() != NULL; lst.Next())
//// cout << lst.Curr()->value << ' '; cout << endl;
//
//
// for (auto i : lst)
// cout << i.Get_ID() << ' ';
//
//// auto arr = vector<Base_Link> (5);
//// auto j = arr.begin();
//
//
//
///* auto arr = vector<int>(5, 11);
//// for (auto &i: arr)i++;
//
// for (vector<int>::iterator i = arr.begin(); i != arr.end(); i++)
// (*i)++;
//
// for (auto i: arr)
// cout << i << ' ';
//*/
//}
//
//#pragma clang diagnostic pop