notbugAs an Amazon Associate I earn from qualifying purchases.
Want a good read? Try FreeBSD Mastery: Jails (IT Mastery Book 15)
Want a good monitor light? See my photos
All times are UTC
Ukraine
The recently imposed "must be logged in" restriction is a response to increased bot traffic on the site. This affects search, commits, and vuxml pages.
Search engines are not blocked. Try using "site:www.freshports.org" and your search terms.
After the ports freeze to fix some stuff, the freeze is over. I have some work to do before FreshPorts can start processing commits again before it can start processing again. I've created an issue for that.
Port details
the-algorithms-c++ Collection of various algorithms in mathematics, physics, etc
g20251011 math on this many watch lists=0 search for ports that depend on this port Find issues related to this port Report an issue related to this port View this port on Repology. pkg-fallout g20251011Version of this port present on the latest quarterly branch.
Maintainer: yuri@FreeBSD.org search for ports maintained by this maintainer
Port Added: 2023-01-14 01:45:18
Last Update: 2026-07-14 03:02:47
Commit Hash: f013771
License: MIT
WWW:
https://thealgorithms.github.io/C-Plus-Plus/
Description:
TheAlgorithms/C-Plus-Plus is a collection of open-source implementation of a variety of algorithms implemented in C++ and licensed under MIT License. These algorithms span a variety of topics from computer science, mathematics and statistics, data science, machine learning, engineering, etc. The implementations and the associated documentation are meant to provide a learning resource for educators and students. Hence, one may find more than one implementation for the same objective but using a different algorithm strategies and optimizations.
Homepage    cgit ¦ Codeberg ¦ GitHub ¦ GitLab ¦ SVNWeb - no subversion history for this port

Manual pages:
FreshPorts has no man page information for this port.
pkg-plist: as obtained via: make generate-plist
Expand this list (365 items)
Collapse this list.
  1. /usr/local/share/licenses/the-algorithms-c++-g20251011/catalog.mk
  2. /usr/local/share/licenses/the-algorithms-c++-g20251011/LICENSE
  3. /usr/local/share/licenses/the-algorithms-c++-g20251011/MIT
  4. bin/backtracking/generate_parentheses
  5. bin/backtracking/graph_coloring
  6. bin/backtracking/knight_tour
  7. bin/backtracking/magic_sequence
  8. bin/backtracking/minimax
  9. bin/backtracking/n_queens
  10. bin/backtracking/n_queens_all_solution_optimised
  11. bin/backtracking/nqueen_print_all_solutions
  12. bin/backtracking/rat_maze
  13. bin/backtracking/subarray_sum
  14. bin/backtracking/subset_sum
  15. bin/backtracking/sudoku_solver
  16. bin/backtracking/wildcard_matching
  17. bin/bit_manipulation/check_even_odd
  18. bin/bit_manipulation/count_bits_flip
  19. bin/bit_manipulation/count_of_set_bits
  20. bin/bit_manipulation/count_of_trailing_ciphers_in_factorial_n
  21. bin/bit_manipulation/find_non_repeating_number
  22. bin/bit_manipulation/gray_code
  23. bin/bit_manipulation/hamming_distance
  24. bin/bit_manipulation/next_higher_number_with_same_number_of_set_bits
  25. bin/bit_manipulation/power_of_2
  26. bin/bit_manipulation/set_kth_bit
  27. bin/bit_manipulation/travelling_salesman_using_bit_manipulation
  28. bin/ciphers/a1z26_cipher
  29. bin/ciphers/atbash_cipher
  30. bin/ciphers/base64_encoding
  31. bin/ciphers/caesar_cipher
  32. bin/ciphers/elliptic_curve_key_exchange
  33. bin/ciphers/hill_cipher
  34. bin/ciphers/morse_code
  35. bin/ciphers/vigenere_cipher
  36. bin/ciphers/xor_cipher
  37. bin/cpu_scheduling_algorithms/fcfs_scheduling
  38. bin/cpu_scheduling_algorithms/non_preemptive_sjf_scheduling
  39. bin/data_structures/avltree
  40. bin/data_structures/binary_search_tree
  41. bin/data_structures/binary_search_tree2
  42. bin/data_structures/binaryheap
  43. bin/data_structures/bloom_filter
  44. bin/data_structures/circular_queue_using_linked_list
  45. bin/data_structures/cll
  46. bin/data_structures/disjoint_set
  47. bin/data_structures/doubly_linked_list
  48. bin/data_structures/dsu_path_compression
  49. bin/data_structures/dsu_union_rank
  50. bin/data_structures/linked_list
  51. bin/data_structures/linkedlist_implentation_usingarray
  52. bin/data_structures/list_array
  53. bin/data_structures/morrisinorder
  54. bin/data_structures/queue_using_array
  55. bin/data_structures/queue_using_array2
  56. bin/data_structures/queue_using_linked_list
  57. bin/data_structures/queue_using_linkedlist
  58. bin/data_structures/queue_using_two_stacks
  59. bin/data_structures/rb_tree
  60. bin/data_structures/reverse_a_linked_list
  61. bin/data_structures/segment_tree
  62. bin/data_structures/skip_list
  63. bin/data_structures/sparse_table
  64. bin/data_structures/stack_using_array
  65. bin/data_structures/stack_using_linked_list
  66. bin/data_structures/stack_using_queue
  67. bin/data_structures/test_queue
  68. bin/data_structures/test_stack
  69. bin/data_structures/test_stack_students
  70. bin/data_structures/treap
  71. bin/data_structures/tree
  72. bin/data_structures/tree_234
  73. bin/data_structures/trie_modern
  74. bin/data_structures/trie_tree
  75. bin/data_structures/trie_using_hashmap
  76. bin/divide_and_conquer/karatsuba_algorithm_for_fast_multiplication
  77. bin/divide_and_conquer/strassen_matrix_multiplication
  78. bin/dynamic_programming/0_1_knapsack
  79. bin/dynamic_programming/abbreviation
  80. bin/dynamic_programming/armstrong_number_templated
  81. bin/dynamic_programming/bellman_ford
  82. bin/dynamic_programming/catalan_numbers
  83. bin/dynamic_programming/coin_change
  84. bin/dynamic_programming/coin_change_topdown
  85. bin/dynamic_programming/cut_rod
  86. bin/dynamic_programming/edit_distance
  87. bin/dynamic_programming/egg_dropping_puzzle
  88. bin/dynamic_programming/fibonacci_bottom_up
  89. bin/dynamic_programming/floyd_warshall
  90. bin/dynamic_programming/house_robber
  91. bin/dynamic_programming/kadane
  92. bin/dynamic_programming/longest_common_string
  93. bin/dynamic_programming/longest_common_subsequence
  94. bin/dynamic_programming/longest_increasing_subsequence
  95. bin/dynamic_programming/longest_increasing_subsequence_nlogn
  96. bin/dynamic_programming/longest_palindromic_subsequence
  97. bin/dynamic_programming/matrix_chain_multiplication
  98. bin/dynamic_programming/maximum_circular_subarray
  99. bin/dynamic_programming/minimum_edit_distance
  100. bin/dynamic_programming/palindrome_partitioning
  101. bin/dynamic_programming/partition_problem
  102. bin/dynamic_programming/searching_of_element_in_dynamic_array
  103. bin/dynamic_programming/shortest_common_supersequence
  104. bin/dynamic_programming/subset_sum_dynamic
  105. bin/dynamic_programming/trapped_rainwater
  106. bin/dynamic_programming/trapped_rainwater2
  107. bin/dynamic_programming/tree_height
  108. bin/dynamic_programming/unbounded_0_1_knapsack
  109. bin/dynamic_programming/word_break
  110. bin/games/memory_game
  111. bin/geometry/graham_scan_algorithm
  112. bin/geometry/jarvis_algorithm
  113. bin/geometry/line_segment_intersection
  114. bin/graph/bidirectional_dijkstra
  115. bin/graph/breadth_first_search
  116. bin/graph/bridge_finding_with_tarjan_algorithm
  117. bin/graph/connected_components
  118. bin/graph/connected_components_with_dsu
  119. bin/graph/cycle_check_directed_graph
  120. bin/graph/depth_first_search
  121. bin/graph/depth_first_search_with_stack
  122. bin/graph/dijkstra
  123. bin/graph/hamiltons_cycle
  124. bin/graph/hopcroft_karp
  125. bin/graph/is_graph_bipartite
  126. bin/graph/is_graph_bipartite2
  127. bin/graph/kosaraju
  128. bin/graph/kruskal
  129. bin/graph/lowest_common_ancestor
  130. bin/graph/max_flow_with_ford_fulkerson_and_edmond_karp_algo
  131. bin/graph/number_of_paths
  132. bin/graph/prim
  133. bin/graph/topological_sort
  134. bin/graph/topological_sort_by_kahns_algo
  135. bin/graph/travelling_salesman_problem
  136. bin/graphics/spirograph
  137. bin/greedy_algorithms/binary_addition
  138. bin/greedy_algorithms/boruvkas_minimum_spanning_tree
  139. bin/greedy_algorithms/digit_separation
  140. bin/greedy_algorithms/dijkstra_greedy
  141. bin/greedy_algorithms/gale_shapley
  142. bin/greedy_algorithms/huffman
  143. bin/greedy_algorithms/jump_game
  144. bin/greedy_algorithms/knapsack
  145. bin/greedy_algorithms/kruskals_minimum_spanning_tree
  146. bin/greedy_algorithms/prims_minimum_spanning_tree
  147. bin/hash/chaining
  148. bin/hash/double_hash_hash_table
  149. bin/hash/linear_probing_hash_table
  150. bin/hash/md5
  151. bin/hash/quadratic_probing_hash_table
  152. bin/hash/sha1
  153. bin/hash/sha256
  154. bin/machine_learning/a_star_search
  155. bin/machine_learning/adaline_learning
  156. bin/machine_learning/k_nearest_neighbors
  157. bin/machine_learning/kohonen_som_topology
  158. bin/machine_learning/kohonen_som_trace
  159. bin/machine_learning/neural_network
  160. bin/machine_learning/ordinary_least_squares_regressor
  161. bin/math/aliquot_sum
  162. bin/math/approximate_pi
  163. bin/math/area
  164. bin/math/armstrong_number
  165. bin/math/binary_exponent
  166. bin/math/binomial_calculate
  167. bin/math/check_amicable_pair
  168. bin/math/check_factorial
  169. bin/math/check_prime
  170. bin/math/complex_numbers
  171. bin/math/double_factorial
  172. bin/math/eratosthenes
  173. bin/math/eulers_totient_function
  174. bin/math/extended_euclid_algorithm
  175. bin/math/factorial
  176. bin/math/factorial_memoization
  177. bin/math/fast_power
  178. bin/math/fibonacci
  179. bin/math/fibonacci_fast
  180. bin/math/fibonacci_large
  181. bin/math/fibonacci_matrix_exponentiation
  182. bin/math/fibonacci_sum
  183. bin/math/finding_number_of_digits_in_a_number
  184. bin/math/gcd_iterative_euclidean
  185. bin/math/gcd_of_n_numbers
  186. bin/math/gcd_recursive_euclidean
  187. bin/math/integral_approximation
  188. bin/math/integral_approximation2
  189. bin/math/inv_sqrt
  190. bin/math/iterative_factorial
  191. bin/math/large_factorial
  192. bin/math/largest_power
  193. bin/math/lcm_sum
  194. bin/math/least_common_multiple
  195. bin/math/linear_recurrence_matrix
  196. bin/math/magic_number
  197. bin/math/miller_rabin
  198. bin/math/modular_division
  199. bin/math/modular_exponentiation
  200. bin/math/modular_inverse_fermat_little_theorem
  201. bin/math/modular_inverse_simple
  202. bin/math/n_bonacci
  203. bin/math/n_choose_r
  204. bin/math/ncr_modulo_p
  205. bin/math/number_of_positive_divisors
  206. bin/math/perimeter
  207. bin/math/power_for_huge_numbers
  208. bin/math/power_of_two
  209. bin/math/prime_factorization
  210. bin/math/prime_numbers
  211. bin/math/primes_up_to_billion
  212. bin/math/quadratic_equations_complex_numbers
  213. bin/math/realtime_stats
  214. bin/math/sieve_of_eratosthenes
  215. bin/math/sqrt_double
  216. bin/math/string_fibonacci
  217. bin/math/sum_of_binomial_coefficient
  218. bin/math/sum_of_digits
  219. bin/math/vector_cross_product
  220. bin/math/volume
  221. bin/numerical_methods/babylonian_method
  222. bin/numerical_methods/bisection_method
  223. bin/numerical_methods/brent_method_extrema
  224. bin/numerical_methods/composite_simpson_rule
  225. bin/numerical_methods/durand_kerner_roots
  226. bin/numerical_methods/false_position
  227. bin/numerical_methods/fast_fourier_transform
  228. bin/numerical_methods/gaussian_elimination
  229. bin/numerical_methods/golden_search_extrema
  230. bin/numerical_methods/gram_schmidt
  231. bin/numerical_methods/inverse_fast_fourier_transform
  232. bin/numerical_methods/lu_decompose
  233. bin/numerical_methods/midpoint_integral_method
  234. bin/numerical_methods/newton_raphson_method
  235. bin/numerical_methods/ode_forward_euler
  236. bin/numerical_methods/ode_midpoint_euler
  237. bin/numerical_methods/ode_semi_implicit_euler
  238. bin/numerical_methods/qr_decomposition
  239. bin/numerical_methods/qr_eigen_values
  240. bin/numerical_methods/rungekutta
  241. bin/numerical_methods/successive_approximation
  242. bin/operations_on_datastructures/array_left_rotation
  243. bin/operations_on_datastructures/array_right_rotation
  244. bin/operations_on_datastructures/circular_linked_list
  245. bin/operations_on_datastructures/circular_queue_using_array
  246. bin/operations_on_datastructures/get_size_of_linked_list
  247. bin/operations_on_datastructures/inorder_successor_of_bst
  248. bin/operations_on_datastructures/intersection_of_two_arrays
  249. bin/operations_on_datastructures/reverse_a_linked_list_using_recusion
  250. bin/operations_on_datastructures/reverse_binary_tree
  251. bin/operations_on_datastructures/selectionsortlinkedlist
  252. bin/operations_on_datastructures/trie_multiple_search
  253. bin/operations_on_datastructures/union_of_two_arrays
  254. bin/others/buzz_number
  255. bin/others/decimal_to_binary
  256. bin/others/decimal_to_hexadecimal
  257. bin/others/decimal_to_roman_numeral
  258. bin/others/easter
  259. bin/others/fast_integer_input
  260. bin/others/happy_number
  261. bin/others/iterative_tree_traversals
  262. bin/others/kadanes3
  263. bin/others/kelvin_to_celsius
  264. bin/others/lfu_cache
  265. bin/others/longest_substring_without_repeating_characters
  266. bin/others/lru_cache
  267. bin/others/lru_cache2
  268. bin/others/matrix_exponentiation
  269. bin/others/palindrome_of_number
  270. bin/others/paranthesis_matching
  271. bin/others/pascal_triangle
  272. bin/others/postfix_evaluation
  273. bin/others/primality_test
  274. bin/others/recursive_tree_traversal
  275. bin/others/smallest_circle
  276. bin/others/sparse_matrix
  277. bin/others/spiral_print
  278. bin/others/stairs_pattern
  279. bin/others/tower_of_hanoi
  280. bin/others/vector_important_functions
  281. bin/physics/ground_to_ground_projectile_motion
  282. bin/probability/addition_rule
  283. bin/probability/bayes_theorem
  284. bin/probability/binomial_dist
  285. bin/probability/exponential_dist
  286. bin/probability/geometric_dist
  287. bin/probability/poisson_dist
  288. bin/probability/windowed_median
  289. bin/range_queries/fenwick_tree
  290. bin/range_queries/heavy_light_decomposition
  291. bin/range_queries/mo
  292. bin/range_queries/persistent_seg_tree_lazy_prop
  293. bin/range_queries/prefix_sum_array
  294. bin/range_queries/segtree
  295. bin/range_queries/sparse_table_range_queries
  296. bin/search/binary_search
  297. bin/search/exponential_search
  298. bin/search/fibonacci_search
  299. bin/search/floyd_cycle_detection_algo
  300. bin/search/hash_search
  301. bin/search/interpolation_search
  302. bin/search/interpolation_search2
  303. bin/search/jump_search
  304. bin/search/linear_search
  305. bin/search/longest_increasing_subsequence_using_binary_search
  306. bin/search/median_search
  307. bin/search/median_search2
  308. bin/search/saddleback_search
  309. bin/search/sublist_search
  310. bin/search/ternary_search
  311. bin/search/text_search
  312. bin/sorting/bead_sort
  313. bin/sorting/binary_insertion_sort
  314. bin/sorting/bitonic_sort
  315. bin/sorting/bogo_sort
  316. bin/sorting/bubble_sort
  317. bin/sorting/bucket_sort
  318. bin/sorting/cocktail_selection_sort
  319. bin/sorting/comb_sort
  320. bin/sorting/count_inversions
  321. bin/sorting/counting_sort
  322. bin/sorting/counting_sort_string
  323. bin/sorting/cycle_sort
  324. bin/sorting/dnf_sort
  325. bin/sorting/gnome_sort
  326. bin/sorting/heap_sort
  327. bin/sorting/insertion_sort
  328. bin/sorting/insertion_sort_recursive
  329. bin/sorting/library_sort
  330. bin/sorting/merge_insertion_sort
  331. bin/sorting/merge_sort
  332. bin/sorting/non_recursive_merge_sort
  333. bin/sorting/numeric_string_sort
  334. bin/sorting/odd_even_sort
  335. bin/sorting/pancake_sort
  336. bin/sorting/pigeonhole_sort
  337. bin/sorting/quick_sort
  338. bin/sorting/quick_sort_3
  339. bin/sorting/quick_sort_iterative
  340. bin/sorting/radix_sort
  341. bin/sorting/radix_sort2
  342. bin/sorting/random_pivot_quick_sort
  343. bin/sorting/recursive_bubble_sort
  344. bin/sorting/selection_sort_iterative
  345. bin/sorting/selection_sort_recursive
  346. bin/sorting/shell_sort
  347. bin/sorting/shell_sort2
  348. bin/sorting/slow_sort
  349. bin/sorting/stooge_sort
  350. bin/sorting/strand_sort
  351. bin/sorting/swap_sort
  352. bin/sorting/tim_sort
  353. bin/sorting/wave_sort
  354. bin/sorting/wiggle_sort
  355. bin/strings/boyer_moore
  356. bin/strings/brute_force_string_searching
  357. bin/strings/duval
  358. bin/strings/horspool
  359. bin/strings/knuth_morris_pratt
  360. bin/strings/manacher_algorithm
  361. bin/strings/rabin_karp
  362. bin/strings/z_function
  363. @owner
  364. @group
  365. @mode
Collapse this list.
USE_RC_SUBR (Service Scripts)
  • no SUBR information found for this port
Dependency lines:
  • the-algorithms-c++>0:math/the-algorithms-c++
To install the port:
cd /usr/ports/math/the-algorithms-c++/ && make install clean
To add the package, run one of these commands:
  • pkg install math/the-algorithms-c++
  • pkg install the-algorithms-c++
NOTE: If this package has multiple flavors (see below), then use one of them instead of the name specified above.
PKGNAME: the-algorithms-c++
Flavors: there is no flavor information for this port.
distinfo:
TIMESTAMP = 1783996903 SHA256 (TheAlgorithms-C-Plus-Plus-g20251011-b9c118f_GH0.tar.gz) = b71ea6a20abd33dfd1b44172ff5d5c57f72e973205485c0c174a84fb2868bf77 SIZE (TheAlgorithms-C-Plus-Plus-g20251011-b9c118f_GH0.tar.gz) = 524247

Packages (timestamps in pop-ups are UTC):
the-algorithms-c++
ABIaarch64amd64armv6armv7i386powerpcpowerpc64powerpc64le
FreeBSD:13:latestg20240212g20240212-g20240212g20240212n/an/an/a
FreeBSD:13:quarterlyg20240212g20240212g20230110g20240212g20240212n/an/an/a
FreeBSD:14:latestg20251011g20251011-g20240212g20251011g20230110-g20230110
FreeBSD:14:quarterlyg20251011g20251011-g20240212g20251011g20230110g20230110g20230110
FreeBSD:15:latestg20251011g20251011n/ag20240212n/an/ag20230110g20230110
FreeBSD:15:quarterlyg20251011g20251011n/a-n/an/a--
FreeBSD:16:latestg20251011g20251011n/a-n/an/a--
Dependencies
NOTE: FreshPorts displays only information on required and default dependencies. Optional dependencies are not covered.
Build dependencies:
  1. cmake : devel/cmake-core
  2. ninja : devel/ninja
  3. xorgproto>=0 : x11/xorgproto
  4. xi.pc : x11/libXi
  5. xmu.pc : x11-toolkits/libXmu
Runtime dependencies:
  1. xi.pc : x11/libXi
  2. xmu.pc : x11-toolkits/libXmu
Library dependencies:
  1. libGL.so : graphics/libglvnd
  2. libglut.so : graphics/freeglut
There are no ports dependent upon this port

Configuration Options:
No options to configure
Options name:
math_the-algorithms-c++
USES:
cmake gl localbase:ldflags xorg
FreshPorts was unable to extract/find any pkg message
Master Sites:
Expand this list (1 items)
Collapse this list.
  1. https://codeload.github.com/TheAlgorithms/C-Plus-Plus/tar.gz/b9c118f?dummy=/
Collapse this list.

Number of commits found: 6

Commit History - (may be incomplete: for full details, see links to repositories near top of page)
CommitCreditsLog message
g20251011
14 Jul 2026 03:02:47
commit hash: f0137711775bcdd1bcb80d919853af4a58561369commit hash: f0137711775bcdd1bcb80d919853af4a58561369commit hash: f0137711775bcdd1bcb80d919853af4a58561369commit hash: f0137711775bcdd1bcb80d919853af4a58561369 files touched by this commit
Yuri Victorovich (yuri) search for other commits by this committer
math/the-algorithms-c++: update g20240212 → g20251011
g20240212
16 Apr 2024 01:52:34
commit hash: 8386809c446ad21eb5d7d4c371ac1a7a3ee14b9ccommit hash: 8386809c446ad21eb5d7d4c371ac1a7a3ee14b9ccommit hash: 8386809c446ad21eb5d7d4c371ac1a7a3ee14b9ccommit hash: 8386809c446ad21eb5d7d4c371ac1a7a3ee14b9c files touched by this commit
Yuri Victorovich (yuri) search for other commits by this committer
math/the-algorithms-c++: Add workaround for compilation failure on 15-CURRENT

Reported by:	fallout
g20240212
12 Apr 2024 03:56:05
commit hash: 76764498045779e1e2d9d71b74f0d712e05b22e8commit hash: 76764498045779e1e2d9d71b74f0d712e05b22e8commit hash: 76764498045779e1e2d9d71b74f0d712e05b22e8commit hash: 76764498045779e1e2d9d71b74f0d712e05b22e8 files touched by this commit
Yuri Victorovich (yuri) search for other commits by this committer
math/the-algorithms-c++: update g20230110 → g20240212
g20230110
12 Aug 2023 01:37:42
commit hash: 8fa8f247a8e0a791534b3aa6708cdbe3e7bb75b5commit hash: 8fa8f247a8e0a791534b3aa6708cdbe3e7bb75b5commit hash: 8fa8f247a8e0a791534b3aa6708cdbe3e7bb75b5commit hash: 8fa8f247a8e0a791534b3aa6708cdbe3e7bb75b5 files touched by this commit
Piotr Kubaj (pkubaj) search for other commits by this committer
math/the-algorithms-c++: drop not necessary CMAKE_ARGS
g20230110
13 Mar 2023 00:02:57
commit hash: 559697321a6c96a8a5aca779fc97fa8d292d61f1commit hash: 559697321a6c96a8a5aca779fc97fa8d292d61f1commit hash: 559697321a6c96a8a5aca779fc97fa8d292d61f1commit hash: 559697321a6c96a8a5aca779fc97fa8d292d61f1 files touched by this commit
Piotr Kubaj (pkubaj) search for other commits by this committer
math/the-algorithms-c++: fix build without libomp

CMake Error: CMAKE_C_COMPILER not set, after EnableLanguage
CMake Error: CMAKE_CXX_COMPILER not set, after EnableLanguage
CMake Error at /usr/local/share/cmake/Modules/FindOpenMP.cmake:261
(try_compile):
  Failed to configure test project build system.
Call Stack (most recent call first):
  /usr/local/share/cmake/Modules/FindOpenMP.cmake:537 (_OPENMP_GET_FLAGS)
  CMakeLists.txt:21 (find_package)
g20230110
14 Jan 2023 01:42:19
commit hash: b41b467ee004cccd28baf3e3639d60f2efe3d1d1commit hash: b41b467ee004cccd28baf3e3639d60f2efe3d1d1commit hash: b41b467ee004cccd28baf3e3639d60f2efe3d1d1commit hash: b41b467ee004cccd28baf3e3639d60f2efe3d1d1 files touched by this commit
Yuri Victorovich (yuri) search for other commits by this committer
math/the-algorithms-c++: New port: Collection of various algorithms in
mathematics, physics, etc

Number of commits found: 6