Commit Graph

70 Commits

Author SHA1 Message Date
github-actions
ec8f410558 updating DIRECTORY.md 2020-05-28 18:34:08 +00:00
github-actions
5bbeec3ace updating DIRECTORY.md 2020-05-28 00:22:16 +00:00
github-actions
9249fa2743 updating DIRECTORY.md 2020-05-27 22:41:28 +00:00
github-actions
962e27a2be updating DIRECTORY.md 2020-05-27 21:38:10 +00:00
Krishna Vedala
00e49027ef
Merge branch 'document/math'
* document/math:
  document square-root that uses bisection method
  math readme title
  documentation and bug fixes
  fix cpplint
  docs for large number power
  documetnation for positive divisors
  documentation for Little Fermat's Thm
  updating DIRECTORY.md
  document fibonacci program
  better document GCD programs
  improve documentation for fast_power
  use template based functions
  documentation for extended euclid
  fix code for generic types
  documentation for eulers_totient_function.cpp
  documentation update for double_factorial
  fix documentation for double_factorial
  bug fix - no function return and invalid for loop termination check
  documentation for double_factorial
  documetnation for binary_exponent.cpp
2020-05-27 17:37:43 -04:00
Krishna Vedala
6d0aa17429
Merge branch 'large_factorial'
* large_factorial: (24 commits)
  removed author details from comments for header file
  added documetnation to large_factorial.cpp
  set 1 space for `private` and `public` keywords in cpp-classes
  use static variable to return reference for
  fixed code for lint and copy constructor
  Update .vscode/settings.json
  remove erroneous const from `+` operator
  code cleanup
  use cinttypes for size specific int type
  updated vscode settings
  more cpp lint fixes
  cpp lint fixes
  replace `std::chronos` with `ctime` - cpplint does not allow c++-11
  updating DIRECTORY.md
  remove incorrect comment
  user editable test "N"
  added test case
  ignore non numeric characters when creating large_number from a string
  large_number: created assignment operator
  compute arbitrarily large fibonacci number
  ...

# Conflicts:
#	DIRECTORY.md
2020-05-27 17:36:30 -04:00
github-actions
4d272210fc updating DIRECTORY.md 2020-05-27 19:42:57 +00:00
github-actions
0aa566757e updating DIRECTORY.md 2020-05-26 20:40:33 +00:00
github-actions
0941caf209 updating DIRECTORY.md 2020-05-26 15:34:31 +00:00
github-actions
3d5a6fbce3 updating DIRECTORY.md 2020-05-26 13:40:20 +00:00
github-actions
a3a57aea2d updating DIRECTORY.md 2020-05-26 13:33:02 +00:00
github-actions
f28099d3f8 updating DIRECTORY.md 2020-05-26 04:54:27 +00:00
github-actions
9d64ff014e updating DIRECTORY.md 2020-05-26 04:52:59 +00:00
github-actions
2e2f9c209c updating DIRECTORY.md 2020-05-26 03:32:54 +00:00
github-actions
4c7685fdf6 updating DIRECTORY.md 2020-05-26 03:22:58 +00:00
github-actions
15d481f8ca updating DIRECTORY.md 2020-05-26 03:13:48 +00:00
github-actions
ef24ae3a09 updating DIRECTORY.md 2020-05-26 02:57:04 +00:00
github-actions
6b55d4472f updating DIRECTORY.md 2020-05-25 15:18:11 +00:00
github-actions
a77151c254 updating DIRECTORY.md 2020-05-24 18:38:16 +00:00
github-actions
258200ec9f updating DIRECTORY.md 2020-05-24 12:09:31 +00:00
github-actions
b1bacb03b5 updating DIRECTORY.md 2020-05-24 06:47:38 +00:00
github-actions
34337c7bc3 updating DIRECTORY.md 2020-05-24 04:44:27 +00:00
github-actions
09d40e008a updating DIRECTORY.md 2020-05-24 04:42:45 +00:00
github-actions
1c19d850e0 updating DIRECTORY.md 2020-05-23 16:13:05 +00:00
Anup Kumar Panwar
22a5e863fd
Merge pull request #734 from faizanahamed1414/patch-2
error in line 23 i.e a constant value
2020-05-23 00:01:16 +05:30
github-actions
a4e1d4c6c1 updating DIRECTORY.md 2020-05-22 14:14:06 +00:00
github-actions
2ebeb3673b updating DIRECTORY.md 2020-05-22 10:15:46 +00:00
github-actions
8978cd0653 updating DIRECTORY.md 2020-05-22 10:14:37 +00:00
github-actions
ea98ef48bc updating DIRECTORY.md 2020-05-21 20:49:02 +00:00
github-actions
375298f113 updating DIRECTORY.md 2020-05-21 20:45:15 +00:00
github-actions
f4e94eed88 updating DIRECTORY.md 2020-05-21 15:26:08 +00:00
github-actions
d079d1fda4 updating DIRECTORY.md 2020-05-19 18:57:16 +00:00
github-actions
52f46c5b61 updating DIRECTORY.md 2020-05-19 15:50:31 +00:00
github-actions
a11c09e6ba updating DIRECTORY.md 2020-05-19 06:45:56 +00:00
github-actions
22ee86d69b updating DIRECTORY.md 2020-05-19 04:59:55 +00:00
Srujan Bharadwaj
de65e2b256
Create extended_euclid_algorithm.cpp (#759)
* Create extended_euclid_algorithm.cpp

* Fix wihitespaces and fix if else space issues

* Update extended_euclid_algorithm.cpp

* updating DIRECTORY.md

* Update extended_euclid_algorithm.cpp

Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
2020-05-18 14:32:42 +02:00
github-actions
0b6f8ff7d3 updating DIRECTORY.md 2020-05-14 23:21:24 +00:00
github-actions
b88f7d89d6 updating DIRECTORY.md 2020-04-27 00:34:36 +00:00
github-actions
da894d7745 updating DIRECTORY.md 2020-04-26 09:51:54 +00:00
github-actions
b8a6a6470f updating DIRECTORY.md 2020-04-26 09:28:13 +00:00
Musab Albirair
49871c7f2f
Add file for non-recursive merge sort (#730)
* Add file for non-recursive merge sort

Add the source file (sorting/non_recursive_merge_sort.cpp) which defines the function template "non_recursive_merge_sort" in different forms, along with a helper function merge. Moreover, it creates 2 additional files, doxy.txt for Doxygen configuration, and a makefile to automate building, testing and cleaning.

* Add file for non-recursive merge sort

Add the source file (sorting/non_recursive_merge_sort.cpp) which defines the function template "non_recursive_merge_sort" in different forms, along with a helper function merge. Moreover, it creates 2 additional files, doxy.txt for Doxygen configuration, and a makefile to automate building, testing and cleaning.

* GitHub Action to cd sorting ; make doc ; make doc

* updating DIRECTORY.md

* Fix indentation error

* uses: mattnotmitt/doxygen-action@master

* doxyfile-path: 'sorting/'

* doxyfile-path: 'sorting/doxy.txt'

* working-directory: '.'

* Update sorting_non_recursive_merge_sort.yml

* Update sorting_non_recursive_merge_sort.yml

* Update sorting_non_recursive_merge_sort.yml

* Publish HTML to GitHub Pages

* Update sorting_non_recursive_merge_sort.yml

Co-authored-by: Christian Clauss <cclauss@me.com>
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
2020-04-25 17:16:42 +02:00
github-actions
b2799b6fbb updating DIRECTORY.md 2020-04-22 12:53:26 +00:00
github-actions
5856bc0918 updating DIRECTORY.md 2020-04-22 12:34:03 +00:00
github-actions
5149a9f550 updating DIRECTORY.md 2020-04-22 00:19:29 +00:00
github-actions
7320fbe6c0 updating DIRECTORY.md 2020-04-21 13:13:18 +00:00
github-actions
86dad95364 updating DIRECTORY.md 2020-04-20 10:05:31 +00:00
github-actions
f51c5e11ef updating DIRECTORY.md 2020-04-17 13:02:35 +00:00
github-actions
179dc38927 updating DIRECTORY.md 2020-04-17 13:00:33 +00:00
github-actions
9bfecf2473 updating DIRECTORY.md 2020-04-16 14:18:23 +00:00
github-actions
48822d41a1 updating DIRECTORY.md 2020-04-16 10:33:07 +00:00