-
Notifications
You must be signed in to change notification settings - Fork 0
/
tools.cpp
836 lines (755 loc) · 15.3 KB
/
tools.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
//
// Created by wolves on 2022/7/19.
//
#pragma once //确保此作为头文件对时候只会引用一次
#include "stdarg.h"
#include "stdio.h"
#include "time.h"
#include "stdlib.h"
#include "string.h"
#include "stdbool.h"
#include "math.h"
#include "iostream"
using namespace std;
/**
* @brief 定义编译运行环境
* 1.cmake 2.code runner
*/
int RUN_ENV = 1;
/**
* 随机生成数字的种子更改值
*/
int Rand_times = 0;
int Rand_index = -1;
int rands[40];
int RandC[100];
// 十进制int转char* & string
char *tIntToString(int num)//10进制
{
//获取长度
int length = 0;
int temp = num;
while (temp != 0) {
temp = temp / 10;
length++;
}
//分配空间
char *str = (char *) malloc(sizeof(char) * length);
int i = 0;//指示填充str
if (num < 0) {//如果num为负数,将num变正
num = -num;
str[i++] = '-';
}
//转换
do {
str[i++] = num % 10 + 48;//取num最低位 字符0~9的ASCII码是48~57;简单来说数字0+48=48,ASCII码对应字符'0'
num /= 10;//去掉最低位
} while (num);//num不为0继续循环
str[i] = '\0';
//确定开始调整的位置
int j = 0;
if (str[0] == '-') {//如果有负号,负号不用调整
j = 1;//从第二位开始调整
++i;//由于有负号,所以交换的对称轴也要后移1位
}
//对称交换
for (; j < i / 2; j++) {
//对称交换两端的值 其实就是省下中间变量交换a+b的值:a=a+b;b=a-b;a=a-b;
str[j] = str[j] + str[i - 1 - j];
str[i - 1 - j] = str[j] - str[i - 1 - j];
str[j] = str[j] - str[i - 1 - j];
}
return str;//返回转换后的值
}
//换行
void tEnter() {
printf("\n");
}
//eg. 1900/01/01 00:00:00
char *tGetTimeStr() {
//获取标准时间
char *times = (char *) malloc(sizeof(char) * 30);
time_t timeX;
struct tm *p;
time(&timeX);
p = gmtime(&timeX);
strcat(times, tIntToString(p->tm_year + 1900));
strcat(times, "/");
//拼接字符串
int mouth = (p->tm_mon + 1) % 12;
if (mouth < 10) {
strcat(times, "0");
}
strcat(times, tIntToString(mouth));
strcat(times, "/");
int day = p->tm_mday;
if (day < 10) {
strcat(times, "0");
}
strcat(times, tIntToString(day));
strcat(times, " ");
int hour = (p->tm_hour + 8) % 24;
if (hour < 10) {
strcat(times, "0");
}
strcat(times, tIntToString(hour));
strcat(times, ":");
int minute = p->tm_min;
if (minute < 10) {
strcat(times, "0");
}
strcat(times, tIntToString(minute));
strcat(times, ":");
int second = p->tm_sec;
if (second < 10) {
strcat(times, "0");
}
strcat(times, tIntToString(second));
return times;
}
//打印时间戳
void tPrintTime() {
char *times = tGetTimeStr();
strcat(times, " ");
printf("%s", times);
}
/**
* 不换行快速打印 string 值
* @重载方法
* @param text
*/
void tPrint(const char *text) {
printf("%s", text);
}
/**
* 不换行快速打印 泛型 值
* @重载方法
* @param text
*/
template<class T>
void tPrint(T text) {
cout << text;
}
/**
* 打印info
*/
void tPrintInfo() {
if (RUN_ENV == 1) {
printf("\033[34minfo \033[0m");
} else if (RUN_ENV == 2) {
printf("info ");
}
}
void tPrintWarn() {
if (RUN_ENV == 1) {
printf("\033[1;33mwarning \033[0m");
} else if (RUN_ENV == 2) {
printf("info ");
}
}
void tPrintWrong() {
if (RUN_ENV == 1) {
printf("\033[0;32;31mwrong \033[0m");
} else if (RUN_ENV == 2) {
printf("info ");
}
}
/**
* 打印时间戳和info
*/
void tPrintTimeInfo() {
tPrintTime();
tPrintInfo();
}
void tPrintTimeWarn() {
tPrintTime();
tPrintWarn();
}
void tPrintTimeWrong() {
tPrintTime();
tPrintWrong();
}
/**
* 不换行快速打印 int 值
* @重载方法
* @param text
*/
void tPrint(int text) {
printf("%d", text);
}
/**
* 快速换行打印 string 值
* @重载方法
* @param text
*/
void tPrintln(const char *text) {
printf("%s\n", text);
}
/**
* 快速换行打印 int 值
* @重载方法
* @param text
*/
void tPrintln(int text) {
printf("%d\n", text);
}
/**
* 快速换行打印 int 值
* @重载方法
* @param text
*/
void tPrintln(char text) {
printf("%c\n", text);
}
/**
* 以log形式打印 string 值
* @重载方法
* log模式打印 格式为 year/mouth/day hour:minute:second info xxx
* @param text
*/
void tLog(const char *text) {
tPrintTimeInfo();
tPrintln(text);
}
void tWarn(const char *text) {
tPrintTimeWarn();
tPrintln(text);
}
void tWrong(const char *text) {
tPrintTimeWrong();
tPrintln(text);
}
/**
* 不换行以log形式打印 string 值
* @重载方法
* log模式打印 格式为 year/mouth/day hour:minute:second info xxx
* @param text
*/
void tLog_f(const char *text) {
tPrintTimeInfo();
tPrint(text);
}
/**
* 以log形式打印 int 值
* @重载方法
* log模式打印 格式为 year/mouth/day hour:minute:second info xxx
* @param text
*/
void tLog(int text) {
tPrintTimeInfo();
tPrintln(text);
}
/**
* 以log形式打印 char 值
* @重载方法
* log模式打印 格式为 year/mouth/day hour:minute:second info xxx
* @param text
*/
void tLog(char text) {
tPrintTime();
tPrintInfo();
tPrintln(text);
}
// 输出一段语句表示程序编译完成以下开始执行
void tStart() {
tLog("Compile complete!");
}
// 输出一段语句表示程序结束
void tEnd() {
tLog("done!");
}
// int判断大小,返回较大值
int tMaxInt(int a, int b) {
return a > b ? a : b;
}
// int判断大小,返回较小值
int tMinInt(int a, int b) {
return a < b ? a : b;
}
// 输出true&false
void tBool(bool tag) {
if (tag) {
tPrintln("true");
} else {
tPrintln("false");
}
}
/**
* @details 由于C/C++的随机数是伪随机,并且运行时在cpu时钟周期改变时rand会重制,因此创建一个长度为40的随机数数组,
* 在调用开始时就确定随机数,保证每次随机生成值尽可能不同
* @arg 变量Rand_times为全局变量调用次数,确保每次调用结果均不同
* @author li
* @return
*/
int getRands() {
if (Rand_index == -1 || Rand_index == 40) {
srand((unsigned) time(NULL) + Rand_times);
Rand_times += 1;
rands[Rand_index] = rand();
}
return rands[Rand_index];
}
/**
* 生成一个10以内随机的int值
* @return 随机数
*/
int tRandom10() {
return getRands() % 10;
}
/**
* 生成一个100以内随机的int值
* @return 随机数
*/
int tRandom100() {
return getRands() % 100;
}
/**
* 生成一个自定义[x,y]范围以内随机的int值
* @param start 起始值
* @param end 终止值
* @return 随机数
*/
int tRandom(int start, int end) {
return (getRands()) % (end - start + 1) + start;
}
int tRandomNoSame() {
int rand = 1;
while (rand == 1) {
rand = tRandom100();
if (RandC[rand] == 0) {
RandC[tRandom100()] = 1;
break;
}
rand = 1;
}
return rand;
}
/**
* 单向链表节点
* @支持泛型 使用方法 tNode<T> *node = tCreateNode<T>(); 使用方法 tNode<T> *node = tCreateNode<T>(value);
* @tparam T
*/
template<class T>
struct tNode {
T value;
struct tNode *next;
};
/**
* 创建单向链表节点
* @支持泛型 使用方法 tNode<T> *node = tCreateNode<T>();
* @return
*/
template<class T>
tNode<T> *tCreateNode() {
return (tNode<T> *) malloc(sizeof(tNode<T>));
}
/**
* 创建泛型单向链表节点节点并为value赋值
* @支持泛型 使用方法 tNode<T> *node = tCreateNode(value);
* @param data
* @return
*/
template<class T>
tNode<T> *tCreateNode(T value) {
tNode<T> *node = (tNode<T> *) malloc(sizeof(tNode<T>));
node->value = value;
return node;
}
/**
* 单向链表实现的栈
* @支持泛型 使用方法 tStack<T> stack = tCreateStack<T>();
* @tparam T
*/
template<class T>
struct tStack {
int size;
tNode<T> *node;
};
/**
* 创建栈
* @支持泛型 使用方法 tStack<T> stack = tCreateStack<T>();
* @tparam T
* @return
*/
template<class T>
tStack<T> tCreateStack() {
tStack<T> stack;
stack.size = 0;
return stack;
}
/**
* 判断栈是否为空
* @支持泛型
* @param stack
* @return
*/
template<class T>
bool empty(tStack<T> &stack) {
return !stack.size;
}
/**
* 向栈中插入元素
* @支持泛型
* @param stack
* @param value
* @return
*/
template<class T>
void push(tStack<T> &stack, T value) {
tNode<T> *node = tCreateNode(value);
node->next = stack.node;
stack.node = node;
stack.size++;
}
/**
* 从栈中推出元素
* @支持泛型
* @param stack
* @return
*/
template<class T>
T pop(tStack<T> &stack) {
tNode<T> *node = stack.node;
stack.node = node->next;
T value = node->value;
free(node);
stack.size--;
return value;
}
/**
* 查看栈顶元素值
* @支持泛型
* @param stack
* @return
*/
template<class T>
T peek(tStack<T> &stack) {
return stack.node->value;
}
/**
* @brief 查看当前栈大小
* @支持泛型
* @tparam T
* @param stack
* @return int
*/
template<class T>
int size(tStack<T> &stack) {
return stack.size;
}
/**
* 双向链表节点
* @支持泛型
*/
template<class T>
struct tDNode {
T value;
tDNode *next;
tDNode *prior;
};
/**
* 打印双端队列
* @tparam T
* @param head 头节点
*/
template<class T>
void tPrintDNode(tDNode<T> head) {
tDNode<T> node = head;
tPrintTimeInfo();
while (node != NULL) {
tPrint(node.value);
tPrint(" ");
node = node.next;
}
tEnter();
}
/**
* 双向链表实现的队列
* 仅允许尾进头出
* @支持泛型
* size 为当前队列中有多少元素
*/
template<class T>
struct tQueue {
int size;
struct tDNode<T> *head, *tail;
};
/**
* 双向链表实现的队列
* 支持头尾双入双出
* @支持泛型
* size 为当前队列中有多少元素
*/
template<class T>
struct tDeque {
int size;
struct tDNode<T> *head, *tail;
};
/**
* 创建双向链表节点
* @支持泛型 使用方法 tDNode<T> *node = tCreateDNode(value);
* @return
*/
template<class T>
tDNode<T> *tCreateDNode() {
return (tDNode<T> *) malloc(sizeof(tDNode<T>));
}
/**
* 创建双向链表节点并为value赋值
* @支持泛型 使用方法 tDNode<T> *node = tCreateDNode(value);
* @param value
* @return
*/
template<class T>
tDNode<T> *tCreateDNode(T value) {
tDNode<T> *node = (tDNode<T> *) malloc(sizeof(tDNode<T>));
node->value = value;
return node;
}
/**
* 创建队列
* @支持泛型 使用方法 tQueue<T> queue = tCreateQueue<T>();
* @tparam T
* @return
*/
template<class T>
tQueue<T> tCreateQueue() {
tQueue<T> queue;
queue.size = 0;
return queue;
}
/**
* 判断队列是否为空
* @支持泛型
* @param stack
* @return
*/
template<class T>
bool empty(tQueue<T> &queue) {
return !queue.size;
}
/**
* 元素入队(队尾)
* @支持泛型
* @tparam T
* @param queue
* @param value
*/
template<class T>
void push(tQueue<T> &queue, T value) {
tDNode<T> *node = tCreateDNode(value);
if (queue.size == 0) {
queue.head = node;
} else {
node->prior = queue.tail;
queue.tail->next = node;
}
queue.tail = node;
queue.size++;
}
/**
* 队首元素出队
* @支持泛型
* @tparam T
* @param queue
* @return
*/
template<class T>
T pop(tQueue<T> &queue) {
tDNode<T> *node = queue.head;
queue.head = node->next;
T value = node->value;
delete (node); //free
queue.size--;
if (queue.size == 0) {
queue.tail = queue.head;
}
return value;
}
/**
* 查看队首元素
* @支持泛型
* @tparam T
* @param queue
* @return
*/
template<class T>
T peek(tQueue<T> &queue) {
return queue.head->value;
}
/**
* @brief 获取队列长度
*
* @tparam T
* @param queue
* @return int
*/
template<class T>
int size(tQueue<T> &queue) {
return queue.size;
}
template<class T>
tQueue<T> tCpyQueue(tQueue<T> q) {
tDNode<T> *node = q.head;
tQueue<T> queue = tCreateQueue<T>();
while (node) {
push(queue, node->value);
node = node->next;
}
return queue;
}
/**
* 实现多字符串拼接
* @param quantity 传入字符串个数
* @param ... 类型为char*
* @return
*/
char *tStrCat(int quantity, ...) {
char *text = (char *) malloc(sizeof(char));
char *value;
va_list arg_ptr;
va_start(arg_ptr, quantity);
for (int i = 0; i < quantity; i++) {
value = va_arg(arg_ptr, char *);
strcat(text, value);
}
va_end(arg_ptr);
return text;
}
/**
* 创建双端队列
* @支持泛型 使用方法 tDeque<T> deque = tCreateDeque<T>();
* @tparam T
* @return
*/
template<class T>
tDeque<T> tCreateDeque() {
tDeque<T> deque;
deque.size = 0;
return deque;
}
/**
* 判断双端队列是否为空
* @支持泛型
* @param stack
* @return
*/
template<class T>
bool tEmpty(tDeque<T> &deque) {
return !deque.size;
}
/**
* 向双端队列队首插入元素
* @支持泛型
* @tparam T
* @param deque
* @param value
*/
template<class T>
void tPush_front(tDeque<T> &deque, T value) {
tDNode<T> *node = tCreateDNode(value);
if (deque.size == 0) {
deque.tail = node;
} else {
node->next = deque.head;
deque.head->prior = node;
}
deque.head = node;
deque.size++;
}
/**
* 向双端队列队尾插入元素
* @支持泛型
* @tparam T
* @param deque
* @param value
*/
template<class T>
void tPush_back(tDeque<T> &deque, T value) {
tDNode<T> *node = tCreateDNode(value);
if (deque.size == 0) {
deque.head = node;
} else {
node->prior = deque.tail;
deque.tail->next = node;
}
deque.tail = node;
deque.size++;
}
/**
* 从双端队列队首推出元素
* @支持泛型
* @tparam T
* @param deque
* @return
*/
template<class T>
T tPop_front(tDeque<T> &deque) {
tDNode<T> *node = deque.head;
deque.head = node->next;
T value = node->value;
free(node);
deque.size--;
if (deque.size == 0) {
deque.tail = deque.head;
}
return value;
}
/**
* 从双端队列队尾推出元素
* @tparam T
* @param deque
* @return
*/
template<class T>
T tPop_back(tDeque<T> &deque) {
tDNode<T> *node = deque.tail;
deque.tail = node->prior;
T value = node->value;
free(node);
deque.size--;
if (deque.size == 0) {
deque.head = deque.tail;
}
return value;
}
/**
* 读取双端队列队首元素
* @支持泛型
* @tparam T
* @param deque
* @return
*/
template<class T>
T tPeek_front(tDeque<T> &deque) {
return deque.head->value;
}
/**
* 读取双端队列队尾元素
* @tparam T
* @param deque
* @return
*/
template<class T>
T tPeek_back(tDeque<T> &deque) {
return deque.tail->value;
}
/**
* 从数组中找第一个相同的元素
* 标准的时间复杂度为 n 的查找算法
* @支持泛型
* @tparam T 数组类型
* @param arr 数组
* @param length 数组长度
* @param element 所需要寻找的元素
* @return 若返回为-1,则在数组中未找到该元素
*/
template<class T>
int Index(T arr[], int length, T element) {
for (int i = 0; i < length; ++i) {
if (element == arr[i]) {
return i;
}
}
return -1;
}