-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.c
More file actions
136 lines (107 loc) · 2.51 KB
/
Copy pathmain.c
File metadata and controls
136 lines (107 loc) · 2.51 KB
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
/*
cHistogram utility permit the ASCII histogram renderization on screen
from a terminal input.
Copyright (C) 2012 Lorenzo Pavesi
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*/
#include <stdlib.h>
#include <sys/ioctl.h>
#include <stdio.h>
#define LINE_MAX 1000
int xRange=50;
int yRange=50;
int *list;
int *result;
double avg =0;
int avgc=0;
int range = 1000;
int main(int argc,char **argv){
int c=0;
if(argc>1){
range = atoi(argv[1]) ;
}
if(argc>2){
xRange = atoi(argv[2]) ;
}
if(argc>3){
yRange = atoi(argv[3]) ;
}
list = (int*)calloc(xRange,sizeof(int));
result = (int*)calloc(xRange,sizeof(int));
FILE * in = fdopen(0,"r");
char line[LINE_MAX];
while (fgets(line, LINE_MAX, in) != NULL) {
// printf(line);
collect(line);
update();
}
free(list);
free(result);
return 0;
}
/*
* Increment counters
*/
int collect(char * line){
int intValue = atoi(line) ;
int i = intValue/range;
if(i<xRange)
++list[i];
else
++list[xRange-1];
//update global avg
avg+=intValue;
++avgc;
return 0;
}
/*
* Draw on console
*/
int update(){
int alpha = 1;
int teta=0;
int i=0;
while(i<xRange){
teta=0;
for(i=0; i<xRange;++i){
int sigma=list[i]/(alpha);
result[i]=sigma;
teta+=result[i];
if(sigma>yRange){
alpha*=2;
break;
}
}
}
teta/=xRange;
for(i = yRange-1 ; i>= 0;--i){
int j;
for(j=0;j<xRange;++j ){
if(result[j]>i)
printf("▊ ");
else
if(teta==i)
printf("..");
else
printf(" ");
}
if(i==yRange-1)
printf("\t %d-+inf \t:\t%d\n",(i+1)*range, list[i]);
else
printf("\t %d-%d \t:\t%d\n",(i+1)*range,i*range, list[i]);
}
for(i=0;i<xRange;++i)
printf("--");
printf("> \n");
printf("Avg : %f (%f / %f)\n",(avg/(avgc*1.0f)),avg,avgc*1.0f);
}