mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
Modified variance.c: renamed file (lowercase), better filling method (with realloc), optimized sorting and more readable code
This commit is contained in:
parent
382f084834
commit
1633281630
56
VARIANCE.C
56
VARIANCE.C
@ -1,56 +0,0 @@
|
|||||||
#include<stdio.h>
|
|
||||||
#include<conio.h>
|
|
||||||
#include<math.h>
|
|
||||||
void main()
|
|
||||||
{
|
|
||||||
int a[10],n,i,j,temp,sum=0;
|
|
||||||
float mean,var,stand;
|
|
||||||
clrscr();
|
|
||||||
printf("Enter no. for Random Numbers :");
|
|
||||||
scanf("%d",&n);
|
|
||||||
for(i=0;i<n;i++)
|
|
||||||
{
|
|
||||||
a[i]=rand()%100;
|
|
||||||
}
|
|
||||||
printf("Random Numbers Generated are :\n");
|
|
||||||
for(i=0;i<n;i++)
|
|
||||||
{
|
|
||||||
printf("\n%d",a[i]);
|
|
||||||
}
|
|
||||||
printf("\n");
|
|
||||||
printf("\nSorted Data:");
|
|
||||||
for(i=0;i<n;i++)
|
|
||||||
{
|
|
||||||
for(j=0;j<n;j++)
|
|
||||||
{
|
|
||||||
if(a[i]<a[j])
|
|
||||||
{
|
|
||||||
temp=a[i];
|
|
||||||
a[i]=a[j];
|
|
||||||
a[j]=temp;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
for(i=0;i<n;i++)
|
|
||||||
{
|
|
||||||
printf("\n%d",a[i]);
|
|
||||||
sum=sum+a[i];
|
|
||||||
}
|
|
||||||
mean=sum/(float)n;
|
|
||||||
printf("\nMean :");
|
|
||||||
printf("%f",mean);
|
|
||||||
printf("\n");
|
|
||||||
for(i=0;i<n;i++)
|
|
||||||
{
|
|
||||||
sum=sum+(pow((a[i]-mean),2));
|
|
||||||
}
|
|
||||||
var=sum/(float)n;
|
|
||||||
printf("\nVariance is : %f",var);
|
|
||||||
printf("\n");
|
|
||||||
stand=sqrt(var);
|
|
||||||
printf("\nStandard Deviation is : %f",stand);
|
|
||||||
getch();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
|
|
54
variance.c
Normal file
54
variance.c
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
#include<stdio.h>
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include<math.h>
|
||||||
|
|
||||||
|
int main() {
|
||||||
|
|
||||||
|
int *ARRAY=NULL,ARRAY_LENGTH,i,TEMPORARY_ELEMENT,isSorted=0;
|
||||||
|
float MEAN=0,VARIANCE=0,STAND;
|
||||||
|
|
||||||
|
|
||||||
|
printf("Enter no. for Random Numbers :");
|
||||||
|
scanf("%d",&ARRAY_LENGTH);
|
||||||
|
ARRAY=(int *)realloc(ARRAY,ARRAY_LENGTH*(sizeof(int))); //We allocate the dedicated memory
|
||||||
|
for(i=0;i<ARRAY_LENGTH;i++) //We generate the random numbers
|
||||||
|
ARRAY[i]=rand()%100;
|
||||||
|
|
||||||
|
printf("Random Numbers Generated are :\n"); //We display them
|
||||||
|
for(i=0;i<ARRAY_LENGTH;i++)
|
||||||
|
printf("%d ",ARRAY[i]);
|
||||||
|
|
||||||
|
printf("\nSorted Data: ");//Then we sort it using Bubble Sort..
|
||||||
|
|
||||||
|
while(!isSorted){ //While our array's not sorted
|
||||||
|
isSorted=1; //we suppose that it's sorted
|
||||||
|
for(i=0;i<ARRAY_LENGTH-1;i++){ //then for each element of the array
|
||||||
|
if(ARRAY[i]>ARRAY[i+1]){ // if the two elements aren't sorted
|
||||||
|
isSorted=0; //it means that the array is not sorted
|
||||||
|
TEMPORARY_ELEMENT=ARRAY[i]; //and we switch these elements using TEMPORARY_ELEMENT
|
||||||
|
ARRAY[i]=ARRAY[i+1];
|
||||||
|
ARRAY[i+1]=TEMPORARY_ELEMENT;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for(i=0;i<ARRAY_LENGTH;i++) {
|
||||||
|
printf("%d ",ARRAY[i]);
|
||||||
|
MEAN=MEAN+ARRAY[i];
|
||||||
|
}
|
||||||
|
MEAN=MEAN/(float)ARRAY_LENGTH;
|
||||||
|
|
||||||
|
for(i=0;i<ARRAY_LENGTH;i++)
|
||||||
|
VARIANCE=VARIANCE+(pow((ARRAY[i]-MEAN),2));
|
||||||
|
|
||||||
|
VARIANCE=VARIANCE/(float)ARRAY_LENGTH;
|
||||||
|
STAND=sqrt(VARIANCE);
|
||||||
|
|
||||||
|
|
||||||
|
printf("\n\n- Mean is: %f\n",MEAN);
|
||||||
|
printf("- Variance is: %f\n",VARIANCE);
|
||||||
|
printf("- Standard Deviation is: %f\n",STAND);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user