-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathdistance.c
49 lines (31 loc) · 976 Bytes
/
distance.c
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
/* distance.c
Compute Euclidian distances
by: Steven Skiena
*/
/*
Copyright 2003 by Steven S. Skiena; all rights reserved.
Permission is granted for use in non-commerical applications
provided this copyright notice remains intact and unchanged.
This program appears in my book:
"Programming Challenges: The Programming Contest Training Manual"
by Steven Skiena and Miguel Revilla, Springer-Verlag, New York 2003.
See our website www.programming-challenges.com for additional information.
This book can be ordered from Amazon.com at
http://www.amazon.com/exec/obidos/ASIN/0387001638/thealgorithmrepo/
*/
#include <stdio.h>
#include "distance.h"
double distance(point a, point b) {
int i;
double d = 0.0;
for (i = 0; i < DIMENSION; i++) {
d = d + (a[i] - b[i]) * (a[i] - b[i]);
}
return(sqrt(d));
}
int main(void) {
point a = {6, 2, 3};
point b = {6, 3, 4};
printf("distance = %f\n", distance(a, b));
return 0;
}