diff --git a/d5/d88/md__d_i_r_e_c_t_o_r_y.html b/d5/d88/md__d_i_r_e_c_t_o_r_y.html index 7e88bd23..0d1e8fa5 100644 --- a/d5/d88/md__d_i_r_e_c_t_o_r_y.html +++ b/d5/d88/md__d_i_r_e_c_t_o_r_y.html @@ -349,6 +349,7 @@ Leetcode
+ Algorithms_in_C 1.0.0
+
+ Set of algorithms implemented in C.
+ |
+
Hamming distance algorithm implementation. +More...
+#include <assert.h>
#include <stdio.h>
+Functions | |
int | hamming_distance (char *str1, char *str2) |
for assert | |
static void | test () |
Self-test implementations. | |
int | main () |
Main function. | |
Hamming distance algorithm implementation.
+In information theory, the Hamming distance between two strings of equal length is the number of positions at which the corresponding symbols are different.
+int hamming_distance | +( | +char * | +str1, | +
+ | + | char * | +str2 | +
+ | ) | ++ |
for assert
+for IO operations
+Function to calculate the Hamming distance between two strings
param1 | string 1 |
param2 | string 2 |
int main | +( | +void | +) | ++ |
+
|
+ +static | +
Self-test implementations.
+Files | |
file | hamming_distance.c |
Hamming distance algorithm implementation. | |
file | poly_add.c |
Implementation of [Addition of two polynomials] (https://en.wikipedia.org/wiki/Polynomial#Addition) | |
► misc | |
► numerical_methods |