TheAlgorithms-C-Plus-Plus/graph
ggkogkou 8a6f2052e2
feat: Created midpoint integration numerical method (#1785)
* Created composite Simpson's numerical integration method

* Created midpoint numerical integration method

* Corrections

* Midpoint method

* Improved Documentation

* added namespace numerical_methods

* Update numerical_methods/midpoint_integral_method.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>

* Update numerical_methods/midpoint_integral_method.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>

* Update numerical_methods/midpoint_integral_method.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>

* updating DIRECTORY.md

* clang-format and clang-tidy fixes for ec5e0cce

* Update numerical_methods/midpoint_integral_method.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>

* clang-format and clang-tidy fixes for 7f16cc14

* Update numerical_methods/midpoint_integral_method.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>

* Update midpoint_integral_method.cpp

* All changes have been applied

* clang-format and clang-tidy fixes for 6617e060

* Update numerical_methods/midpoint_integral_method.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>

* Update numerical_methods/midpoint_integral_method.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>

* clang-format and clang-tidy fixes for a5a50f89

* Update numerical_methods/midpoint_integral_method.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>

* clang-format and clang-tidy fixes for 4c60e180

* Create midpoint_integral_method.cpp

* Update numerical_methods/midpoint_integral_method.cpp

Co-authored-by: David Leal <halfpacho@gmail.com>

* clang-format and clang-tidy fixes for 27f76052

* Update midpoint_integral_method.cpp

Co-authored-by: ggkogkou <ggkogkou@ggkogkou.gr>
Co-authored-by: David Leal <halfpacho@gmail.com>
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
2021-11-01 07:56:40 -06:00
..
bidirectional_dijkstra.cpp feat: Create Bidirectional Dijkstra Algorithm (#1410) 2020-11-21 00:28:12 +05:30
breadth_first_search.cpp feat: Add ncr mod p code (#1325) 2020-11-22 23:05:01 +05:30
bridge_finding_with_tarjan_algorithm.cpp fix: clang-format for graph/ (#1056) 2020-08-27 09:28:31 -05:00
CMakeLists.txt fix: clang-format for graph/ (#1056) 2020-08-27 09:28:31 -05:00
connected_components_with_dsu.cpp fix: Add endline in... 2021-02-11 20:34:41 -06:00
connected_components.cpp fix: linter for connected_components. 2020-08-15 15:57:45 -07:00
cycle_check_directed_graph.cpp
depth_first_search_with_stack.cpp fix/test/docs: update variable sizes, add namespace in graph/depth_first_search_with_stack.cpp (#1335) 2021-02-11 11:19:27 +05:30
depth_first_search.cpp Adjust comment. 2020-08-17 20:10:03 -07:00
dijkstra.cpp fix: clang-format for dijkstra (#1055) 2020-08-27 09:29:22 -05:00
hamiltons_cycle.cpp fix: clang-format for hamiltons_cycle. (#1054) 2020-08-27 09:31:34 -05:00
hopcroft_karp.cpp Hopcroft–Karp algorithm implementation (#1087) 2020-10-16 08:41:51 -04:00
is_graph_bipartite2.cpp feat: Created midpoint integration numerical method (#1785) 2021-11-01 07:56:40 -06:00
is_graph_bipartite.cpp fix: linter and spacing for is_graph_bipartite. (#1037) 2020-08-27 09:26:49 -05:00
kosaraju.cpp fix: clang-format for graph/ (#1056) 2020-08-27 09:28:31 -05:00
kruskal.cpp fix: clang-format for graph/ (#1056) 2020-08-27 09:28:31 -05:00
lowest_common_ancestor.cpp fix: clang-format for graph/ (#1056) 2020-08-27 09:28:31 -05:00
max_flow_with_ford_fulkerson_and_edmond_karp_algo.cpp fix: clang-format for graph/ (#1056) 2020-08-27 09:28:31 -05:00
prim.cpp fix: clang-format for graph/ (#1056) 2020-08-27 09:28:31 -05:00
topological_sort_by_kahns_algo.cpp fix: clang-format for graph/ (#1056) 2020-08-27 09:28:31 -05:00
topological_sort.cpp fix: clang-format for graph/ (#1056) 2020-08-27 09:28:31 -05:00
travelling_salesman_problem.cpp feat: Add Travelling Salesman Problem(Naive Approach) (#1590) 2021-09-12 12:19:06 -05:00