-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmytools.cpp
65 lines (61 loc) · 1.24 KB
/
mytools.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
#include "mytools.h"
#include <iostream>
#include <random>
using namespace std;
void showData(int* vec, int length)
{
if(vec == nullptr)
return;
for(int i = 0 ; i < length; i++)
{
cout << vec[i] << " ";
}
cout << endl;
}
void randData(int* vec, int length, int limit)
{
if(vec == nullptr)
return;
if(limit == 0)
limit = 10000;
random_device rd;
for(int i = 0; i < length; i++)
{
vec[i] = rd()%limit;
}
}
bool isDataSorted(int* unSorted, int* sorted, int length)
{
if(unSorted == nullptr || sorted == nullptr)
return false;
int unSortedSum = 0;
int sortedSum = 0;
for(int i = 0; i< length; i++)
{
unSortedSum += unSorted[i];
sortedSum += sorted[i];
}
if(unSortedSum != sortedSum)
{
cout << "numers changed!!!" << endl;
return false;
}
for(int i = 1; i< length; i++)
{
if(sorted[i-1] > sorted[i])
{
cout << "not sorted!!!" << endl;
return false;
}
}
return true;
}
void copyData(int* dest, int* src, int length)
{
if(dest == nullptr || src == nullptr)
return;
while(length--)
{
dest[length] = src[length];
}
}