github-actions
3dc4c46408
updating DIRECTORY.md
2020-01-09 08:29:42 +00:00
Christian Clauss
c494f71131
Create update_directory_md.yml
...
This GitHub Action updates the DIRECTORY.md file (if needed) when doing a git push.
Copied from https://github.com/TheAlgorithms/C-Plus-Plus/blob/master/.github/workflows/update_directory_md.yml
2020-01-09 09:29:24 +01:00
Hai Hoang Dang
c896b07e89
Merge pull request #507 from ericcurtin/patch-1
...
heapsort does not work for sorted input 1,2,3,4,5
2020-01-03 19:19:05 -08:00
Eric Curtin
5087249a17
heapsort does not work for sorted input 1,2,3,4,5
...
So I copied the C++ version from TheAlgorithms and re-wrote it in C.
Now it works.
2020-01-03 23:53:27 +00:00
orperes1
89a54ae41a
Create 872.c
2019-12-29 14:45:24 +02:00
Ashwek Swamy
70c11c370a
Merge pull request #497 from ubc1729/master
...
Indented "counting Sort" and fixed compilation errors
2019-11-09 23:34:53 +05:30
Ashwek Swamy
6159abcff1
format code
2019-11-09 23:34:40 +05:30
Ashwek Swamy
ebc8fc851f
Merge pull request #498 from goodxodyd11/master
...
Create BeadSort.c
2019-11-08 20:19:14 +05:30
Jeong Tae Yong
835fa06ab0
Create BeadSort.c
2019-11-08 18:14:12 +09:00
ubc1729
5c1e88cc51
Indented "countingSort" and fixed compilation errors
...
Added description about advantage of counting sort over comparison sort and
how counting sort can be stabilized.
2019-11-07 18:39:38 +05:30
Ashwek Swamy
c6d7e59cb8
Merge pull request #469 from ajinkya-ch/TernarySearch
...
added ternary search algorithm
2019-11-05 12:35:49 +05:30
Ashwek Swamy
01fa74093a
Merge pull request #429 from gangwalrachit/patch-4
...
Create middleElementInList.c
2019-11-05 11:13:13 +05:30
HrishiNarayanan
1d886b6235
Create Large_Factorials.c ( #398 )
...
Create Large_Factorials.c
2019-11-05 10:16:21 +05:30
Dan
02fc225648
Added Cartesian to Polar coordinates algorithm ( #355 )
...
Added Cartesian to Polar coordinates algorithm
2019-11-04 17:58:02 +05:30
Ashwek Swamy
aeaf03378b
Merge pull request #269 from ketan-lambat/master
...
avltree, cantorSet added
2019-11-04 16:58:10 +05:30
Ashwek Swamy
35f665db45
formatting code
2019-11-04 16:56:45 +05:30
Ashwek Swamy
3ee9cbdfa2
Formating code
2019-11-04 16:55:45 +05:30
Ashwek Swamy
536970e6ef
Merge pull request #305 from TheShubham99/master
...
UDP Client Server algorithm implementation in C
2019-11-04 01:07:55 +05:30
Ashwek Swamy
76d40c7707
Merge pull request #436 from sumit18cs/patch-1
...
LCM.c
2019-11-02 23:57:35 +05:30
nikki1228
6a120e19a1
Update CArrayTests.c ( #418 )
...
Update CArrayTests.c
2019-11-02 23:46:45 +05:30
Ciaran
9a6e27ad99
Add PID (Proportional Integral Derivative) Controller ( #350 )
...
Add PID (Proportional Integral Derivative) Controller Algorithm
2019-11-02 22:46:16 +05:30
Ashwek Swamy
e07f67b56d
Merge pull request #270 from vicenteferrari/lerp
...
[added] lerp, with both an unprecise and a precise option.
2019-11-02 22:26:13 +05:30
Ashwek Swamy
8a77fb3c74
Created algorithm to convert binary to octal. ( #478 )
...
* Created algorithm to convert binary to octal.
This contatin algorithm to convert binary to octal using recursion
* Rename decimal_to_octal_recursion to decimal_to_octal_recursion.c
2019-11-02 16:20:19 +05:30
Ashwek Swamy
9da370426c
Rename decimal_to_octal_recursion to decimal_to_octal_recursion.c
2019-11-02 16:19:50 +05:30
Zykiel
b2bfeaa132
Add pancake sort ( #344 )
...
Add Pancake Sort
2019-11-01 17:25:38 +05:30
Hai Hoang Dang
99e4aae8c9
Merge pull request #494 from batyil/patch-1
...
Adding LeetCode Problem 38
2019-10-31 13:33:48 -07:00
batyil
94462f2fe6
Update 38.c
2019-10-31 07:11:22 +03:00
batyil
bf124ed91e
Update README.md
2019-10-31 07:07:46 +03:00
batyil
63828a86c2
Adding LeetCode Problem 38
2019-10-31 07:01:08 +03:00
Hai Hoang Dang
683384d959
Merge pull request #490 from andre143/master
...
Adding leetcode Rotate Array (189.c)
2019-10-30 10:08:34 -07:00
Zykiel
39abfd068b
Added Cycle Sort ( #340 )
...
Added Cycle Sort
2019-10-30 15:50:50 +05:30
Ashwek Swamy
c8bb8fd081
Merge pull request #149 from Aruj-Sharma/master
...
Added Stooge Sort and Radix Sort in sorting algorithms
2019-10-30 14:24:53 +05:30
Ashwek Swamy
c385a79149
Merge branch 'master' into master
2019-10-30 14:24:19 +05:30
Ashwek Swamy
f8a5c14852
Rename Sorts/RadixSort.c to sorting/radix_sort.c
2019-10-30 14:22:29 +05:30
Ashwek Swamy
5e9189be5d
Rename Sorts/StoogeSort.c to sorting/StoogeSort.c
2019-10-30 14:21:05 +05:30
Andre Lammers
7c0e52f794
Remove leetcode Count Primes (204.c)
2019-10-29 12:17:07 +01:00
Hai Hoang Dang
dc263b40fc
Merge pull request #489 from evandronmota/master
...
Add LeetCode 367
2019-10-28 21:28:05 -07:00
Evandro Nakayama Mota
ba36b992ec
Add LeetCode 367
2019-10-28 21:35:05 -03:00
Hai Hoang Dang
ca5da0e61e
Merge pull request #488 from evandronmota/master
...
Add LeetCode 231
2019-10-28 15:39:44 -07:00
Evandro Nakayama Mota
aaa8a3149b
Add LeetCode 242
2019-10-28 17:30:18 -03:00
Evandro Nakayama Mota
8f0602c9f1
Add LeetCode 231
2019-10-28 17:06:18 -03:00
Hai Hoang Dang
2e692eddeb
Merge pull request #468 from jaibhageria/leetcode-algorithm-problem11
...
added solution and modified README.md for problem 11
2019-10-28 09:25:56 -07:00
Hai Hoang Dang
d2f3cfa6bc
Merge branch 'master' into leetcode-algorithm-problem11
2019-10-28 09:25:47 -07:00
Hai Hoang Dang
ff9877410b
Merge pull request #475 from Paul-Fugmann/master
...
Add leetcode String to Integer (atoi) (8.c) and Integer to Roman (12.c)
2019-10-28 09:13:47 -07:00
Hai Hoang Dang
f5000f2f96
Merge branch 'master' into master
2019-10-28 09:13:40 -07:00
Hai Hoang Dang
d7ed5ea470
Merge pull request #480 from thechubbypanda/leetcode-9
...
leetcode 9
2019-10-28 09:12:16 -07:00
Hai Hoang Dang
54827a871f
Merge branch 'master' into leetcode-9
2019-10-28 09:11:40 -07:00
Hai Hoang Dang
4b9a4b62c5
Merge pull request #479 from thechubbypanda/leetcode-7
...
Leetcode 7
2019-10-28 09:10:16 -07:00
Paul-Fugmann
9c346de3a3
Merge branch 'master' into master
2019-10-28 09:11:21 +01:00
Keval
138da16aaf
leetcode 9
2019-10-27 21:57:49 +00:00