Algorithms_in_C  1.0.0
Set of algorithms implemented in C.
File List
Here is a list of all documented files with brief descriptions:
[detail level 1234]
  conversions
 c_atoi_str_to_integer.cRecoding the original atoi function in stdlib.h
  data_structures
  array
  binary_trees
  dictionary
  dynamic_array
  graphs
  hash_set
  list
  stack
  exercism
  acronym
  hello_world
  isogram
  rna_transcription
  word_count
  hash
 hash.h
  machine_learning
 adaline_learning.cAdaptive Linear Neuron (ADALINE) implementation
 kohonen_som_topology.cKohonen self organizing map (topological map)
 kohonen_som_trace.cKohonen self organizing map (data tracing)
  misc
 cantor_set.cProgram to generate Cantor ternary set
 collatz.cImplementation of Collatz' conjecture
 factorial_large_number.cCompute factorial of arbitrarily large numbers by storing individual digits in a byte
 fibonacci_fast.cCompute \(m^{mth}\) Fibonacci number using the formulae:
 sudoku_solver.cSudoku Solver using recursive implementation of brute-force algorithm
  numerical_methods
 durand_kerner_roots.cCompute all possible approximate roots of any given polynomial using Durand Kerner algorithm
 lu_decompose.cLU decomposition of a square matrix
 newton_raphson_root.cFind approximate solution for \(f(x) = 0\) using Newton-Raphson interpolation algorithm
 ode_forward_euler.cSolve a multivariable first order ordinary differential equation (ODEs) using forward Euler method
 ode_midpoint_euler.cSolve a multivariable first order ordinary differential equation (ODEs) using midpoint Euler method
 ode_semi_implicit_euler.cSolve a multivariable first order ordinary differential equation (ODEs) using semi implicit Euler method
 qr_decompose.hLibrary functions to compute QR decomposition of a given matrix
 qr_decomposition.cProgram to compute the QR decomposition of a given matrix
 qr_eigen_values.cCompute real eigen values and eigen vectors of a symmetric matrix using QR decomposition method
 realtime_stats.cCompute statistics for data entered in rreal-time
  project_euler
  problem_1
  problem_10
  problem_12
  problem_13
  problem_14
  problem_15
  problem_16
  problem_19
  problem_2
  problem_20
  problem_21
  problem_22
  problem_23
  problem_25
  problem_26
  problem_3
  problem_4
  problem_401
  problem_5
  problem_6
  problem_7
  problem_8
  problem_9
  searching
 binary_search.cProgram to perform binary search of a target value in a given sorted array
 modified_binary_search.cModified binary search algorithm
  sorting
 bead_sort.cSorting of array list using bead sort
 merge_sort.cImplementation of merge sort algorithm
 shell_sort2.cShell sort algorithm implementation