-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathRecordValues.cpp
165 lines (153 loc) · 3.79 KB
/
RecordValues.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
int RecordValues(char *argv[])
{
char FileName[400];//name of processed Wig file
long unsigned int Location=0;
int Coeff = 100;
char tmp;
char str[1000]; //annotation line
unsigned long int Value=0;
float Exp;
unsigned int i;
long int TotalNumbers=0;
long unsigned int Max =0;
int Min = 1000;
int NumberofLargeValues=0;
int Nd=20;
unsigned int SetMaxDiff = exp2(Nd);
unsigned int CountVal[SetMaxDiff]; //maps each consecutive integer to the actual alphabet
memset(CountVal,0,SetMaxDiff*sizeof(int));
strcpy(FileName, argv[1]);
//strcat(FileName, "New");
//strcat(FileName, "RoundVal");
FILE *fp;
fp = fopen(FileName, "r");
if (fp == NULL) {
fprintf(stderr, "Can't open input file %s!\n",FileName);
exit(1);
}
strcpy(FileName, argv[1]);
strcat(FileName, "RecordVal");
FILE *fpWrite;
fpWrite = fopen(FileName, "a");
if (fpWrite == NULL) {
fprintf(stderr, "Can't open input file %s!\n",FileName);
exit(1);
}
strcpy(FileName, argv[1]);
strcat(FileName, "Large");
FILE *fpLarge;
fpLarge = fopen(FileName, "w");
if (fpLarge == NULL) {
fprintf(stderr, "Can't open input file %s!\n",FileName);
exit(1);
}
while (!feof(fp)){
tmp = fgetc(fp);
if (tmp >= '0' && tmp <= '9'){
ungetc(tmp,fp);
fscanf(fp,"%lu %f\n", &Location,&Exp);
Value = (unsigned long)(ceil)(1000.0 * Exp);
Value = Value/10;
if(Value>SetMaxDiff-1)
{
++TotalNumbers;
fprintf(fpLarge,"%lu ", Value);
++NumberofLargeValues;
}
else
{
++CountVal[Value];
++TotalNumbers;
}
if(Value>Max)
Max = Value;
if(Value<Min)
Min = Value;
}
else
{
ungetc(tmp,fp);
fgets(str,sizeof(str),fp);
}
}
fclose(fp);
fclose(fpLarge);
for(i=0;i<SetMaxDiff;++i)
{
if(CountVal[i]>0)
{
fprintf(fpWrite,"%u %u %.8f\n", i, CountVal[i], CountVal[i]*(1.00)/TotalNumbers);
}
}
fclose(fpWrite);
strcpy(FileName, argv[1]);
strcat(FileName, "Maximum");
FILE *fpWriteMax;
fpWriteMax = fopen(FileName, "w");
if (fpWriteMax == NULL) {
fprintf(stderr, "Can't open input file %s!\n",FileName);
exit(1);
}
fprintf(fpWriteMax,"Total numbers,\t Max of Values, \tMinimum of Values \n");
fprintf(fpWriteMax,"%ld %.3f %.3f ", TotalNumbers, Max *(1.0)/100, Min*(1.0)/100);
fclose(fpWriteMax);
long unsigned int *matrix;
matrix= (long unsigned int *)malloc(sizeof(long unsigned int)*NumberofLargeValues);
if (matrix == NULL){
printf("Error! Allocation was not successful. \n" );
exit(1);
}
long unsigned int Valu;
strcpy(FileName, argv[1]);
strcat(FileName, "Large");
FILE *fpReadLarge;
fpReadLarge = fopen(FileName, "r");
if (fpReadLarge == NULL) {
fprintf(stderr, "Can't open input file %s!\n",FileName);
exit(1);
}
strcpy(FileName, argv[1]);
strcat(FileName, "RecordVal");
FILE *fpWrite2;
fpWrite2 = fopen(FileName, "a");
if (fpWrite2 == NULL) {
fprintf(stderr, "Can't open input file %s!\n",FileName);
exit(1);
}
i=0;
while(i<NumberofLargeValues & !feof(fpReadLarge)){
fscanf(fpReadLarge, "%lu", &Valu);
matrix[i]=Valu;
++i;
}
fclose(fpReadLarge);
int j;
long unsigned int b;
for(i=0;i<NumberofLargeValues;++i){
if(matrix[i]!=0){
j=i+1;
while(j<NumberofLargeValues){
if(matrix[i] > matrix[j]){
//printf("vaayyy");
b = matrix[i];
matrix[i] = matrix[j];
matrix[j]= b;
}
++j;
}
}
}
//while(!feof(fpReadLarge))
// {
for(i=0;i<NumberofLargeValues;++i){
//fscanf(fpReadLarge, "%lu ", &Valu);
if(matrix[i] != 0)
fprintf(fpWrite2,"%lu %u %.8f\n", matrix[i], 1,(1.00)/TotalNumbers);
}
fclose(fpWrite2);
// fclose(fpReadLarge);
strcpy(FileName, argv[1]);
strcat(FileName, "Large");
remove(FileName);
return 1;
}