Ayaan Khan
5eee22a750
Merge pull request #768 from Suraj-Patro/patch-28
...
fix: Improved source code formatting at data_structures/linked_list/stack_using_linked_lists.c
2021-02-11 10:15:51 +05:30
Chathura Nimesh
c4e80b8b0a
fix: several bugs on games/tic_tac_toe.c ( #771 )
...
* fixed several bugs on tic_tac_toe
* final changes bug fixed
* added requested changes
* fixed changes
* fixed stuff
* fix clang-tidy warnings
* removed unnecessary headers
* resolved some warnings
* fixed warning c4244
* Tiggering CI checks
2021-02-10 19:32:01 +05:30
Krishna Vedala
604ec7d2b3
remove windows builds ( #796 )
2021-02-06 01:20:20 +05:30
Ravi Shankar Reddy B
14d29d559a
fixed: 761, 762. Fixed mis-spelled header file CArray.h to carray.h ( #783 )
...
Co-authored-by: Ravi Shankar Reddy Bommana <ravishankarreddy.bommana@citrix.com>
2021-01-24 23:04:33 -06:00
David Leal
b2b9191273
fix: Update the copyright year to 2021 ( #780 )
2021-01-07 22:36:22 -06:00
谭九鼎
88fc8bb03d
fix: md style ( #779 )
2021-01-01 20:12:34 -06:00
webdesignbydivyansh
b2def5ca0e
feat: created prime_seive.c ( #708 )
...
* created prime_seive.c
This function counts the number of prime numbers in O(nlogn) time.
* Apply suggestions from code review
Co-authored-by: David Leal <halfpacho@gmail.com>
* updating DIRECTORY.md
* updated prime_seive.c
* Update misc/prime_seive.c
Co-authored-by: David Leal <halfpacho@gmail.com>
* added more changes
please take a look at it
* changed 1000000 to MAX_SIZE
* updated line 10
* changed the code back to original
* eliminated the problem of MAX_SIZE
* added for loop to initialise all elements to 0
* made the changes
* changed the code back to original
i have changed my code back to original as some tests were failing
* removed extra spaces & edited some lines
* added new global variable
* added extra space
* added parameter & return statement
Co-authored-by: David Leal <halfpacho@gmail.com>
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
2020-11-26 06:34:21 -05:00
meenal2000
aef9d8d53f
fix: file names modified for better readability ( #770 )
...
* file names modified
* files name modified
* file names modified
* updating DIRECTORY.md
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
2020-11-03 18:46:26 -06:00
Suraj Patro
752cde71ef
Update stack_using_linked_lists.c
2020-10-31 00:13:40 +05:30
Nicola Masarone
b282b95d5b
fix: Update conversions/binary_to_decimal.c ( #730 )
...
First printf(): newline character changed from /n to \n
2020-10-29 15:06:30 -06:00
Chayoung You
b8da721481
feat: Add another hexadecimal to octal conversion ( #658 )
...
* Add another hexadecimal to octal conversion
* Apply suggestions
Also changed the return type of `hex_to_oct` to `const char *`, as it
returns an address of static variable.
* Update comment of hexadecimal_to_octal2.c
* updating DIRECTORY.md
* Apply suggestions
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
2020-10-20 21:00:03 -05:00
Gabriel Mota Bromonschenkel Lima
778f317e82
Rename redblacktree.c to red_black_tree.c ( #684 )
...
* Rename redblacktree.c to red_black_tree.c
* updating DIRECTORY.md
* add renaming avl.c and ascendingpriorityqueue.c
* updating DIRECTORY.md
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
2020-10-20 12:51:47 -04:00
Gabriel Mota Bromonschenkel Lima
74e81de85a
Doubly linked list, simple code. ( #673 )
...
* Doubly linked list, simple code.
#633
* organizing code a bit more
* add link in DIRECTORY.md and more comments/cleaning.
* remove global variables and redundancy.
* add Wikipedia reference
* add documentation comments in all functions/headers
* add update in file brief
Co-authored-by: Krishna Vedala <7001608+kvedala@users.noreply.github.com>
* remove part of file @details
Co-authored-by: Krishna Vedala <7001608+kvedala@users.noreply.github.com>
2020-10-20 12:50:48 -04:00
github-actions
d6abe9fbbf
updating DIRECTORY.md
2020-10-19 22:31:51 +00:00
Lza-etc
adcbc39e3c
Rename CircularLinkedList.C to circular_linked_list.c ( #679 )
2020-10-19 18:31:01 -04:00
Krishna Vedala
a24d17f57e
feat: guidelines for reviewers ( #671 )
2020-10-18 22:02:04 -05:00
github-actions
d0d67ff789
updating DIRECTORY.md
2020-10-16 13:02:49 +00:00
vinayak
bad50992fd
insertion_sort_recursive ( #647 )
...
* insertion_sort_recursive
* feat: add insertion sort recursive algorithm
* Update sorting/insertion_sort_recursive.c
Co-authored-by: Krishna Vedala <7001608+kvedala@users.noreply.github.com>
* Update sorting/insertion_sort_recursive.c
Co-authored-by: Krishna Vedala <7001608+kvedala@users.noreply.github.com>
* Update insertion_sort_recursive.c
* Update sorting/insertion_sort_recursive.c
Co-authored-by: Krishna Vedala <7001608+kvedala@users.noreply.github.com>
* Update sorting/insertion_sort_recursive.c
Co-authored-by: Krishna Vedala <7001608+kvedala@users.noreply.github.com>
* Update sorting/insertion_sort_recursive.c
Co-authored-by: Krishna Vedala <7001608+kvedala@users.noreply.github.com>
Co-authored-by: Krishna Vedala <7001608+kvedala@users.noreply.github.com>
2020-10-16 09:01:45 -04:00
Vishnu P
a050a48bfd
Added octal to binary conversion ( #629 )
...
* Added octal to binary conversion
* Update conversions/octal_to_binary.c
Co-authored-by: David Leal <halfpacho@gmail.com>
* Update conversions/octal_to_binary.c
Co-authored-by: David Leal <halfpacho@gmail.com>
* Changes updated
* To trigger action
* updating DIRECTORY.md
* LGTM alert fixed.
Co-authored-by: David Leal <halfpacho@gmail.com>
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
2020-10-02 08:16:27 -04:00
Ayaan Khan
d810d9002f
Merge pull request #636 from Panquesito7/add_code_conduct
...
[fix/feat]: Added Code of Conduct
2020-10-02 14:57:16 +05:30
David Leal
812702ff45
[fix/feat]: Added Code of Conduct
2020-10-01 23:45:26 -05:00
Shezza221b
d3bb124b90
docs: Minor documentation improvements (data_structures/queue.c) ( #616 )
2020-10-01 12:19:55 -05:00
devraj4522
6f385ed4a4
Update queue.c ( #622 )
2020-10-01 10:28:19 -04:00
Shezza221b
af6de4b7d4
Update stack.c ( #617 )
2020-10-01 09:34:03 -04:00
David Leal
544f492720
[feat/fix]: Add contributing guidelines and update templates ( #610 )
...
* feat: Add contributing guidelines
* fix: Use the correct links in PR/issue template
* fix: Update README.md to point to correct links
* fix: Update README.md
* fix: Move contributing guidelines to root directory
* fix: Update PR template
2020-09-30 15:40:52 -04:00
Krishna Vedala
4cb3eeb1af
Revert "Added math function power ( #604 )" ( #608 )
...
This reverts commit 88726b9425
.
2020-09-23 21:03:24 -04:00
Krishna Vedala
526c898644
Revert "Added strlen function ( #606 )" ( #607 )
...
This reverts commit 598630cecb
.
2020-09-23 14:33:57 -04:00
Du Yuanchao
598630cecb
Added strlen function ( #606 )
...
* added strlen function
* updating DIRECTORY.md
* Update strings/strlen.c
Co-authored-by: David Leal <halfpacho@gmail.com>
* Update strings/strlen_recursion.c
Co-authored-by: David Leal <halfpacho@gmail.com>
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
Co-authored-by: David Leal <halfpacho@gmail.com>
2020-09-23 13:22:09 -05:00
Du Yuanchao
88726b9425
Added math function power ( #604 )
...
* added power algorithm
* updating DIRECTORY.md
* make test function static
Co-authored-by: David Leal <halfpacho@gmail.com>
* Update misc/power_recursion.c
Co-authored-by: David Leal <halfpacho@gmail.com>
* Update misc/power_recursion.c
Co-authored-by: David Leal <halfpacho@gmail.com>
* Update misc/power.c
Co-authored-by: David Leal <halfpacho@gmail.com>
* Update misc/power.c
Co-authored-by: David Leal <halfpacho@gmail.com>
* Update misc/power.c
Co-authored-by: David Leal <halfpacho@gmail.com>
* Update misc/power.c
Co-authored-by: David Leal <halfpacho@gmail.com>
* Update misc/power_recursion.c
Co-authored-by: David Leal <halfpacho@gmail.com>
* Update misc/power_recursion.c
Co-authored-by: David Leal <halfpacho@gmail.com>
* Update misc/power.c
Co-authored-by: David Leal <halfpacho@gmail.com>
* Update misc/power_recursion.c
Co-authored-by: David Leal <halfpacho@gmail.com>
* Update misc/power_recursion.c
Co-authored-by: David Leal <halfpacho@gmail.com>
* Update misc/power.c
Co-authored-by: David Leal <halfpacho@gmail.com>
* Update misc/power.c
Co-authored-by: David Leal <halfpacho@gmail.com>
* Update misc/power_recursion.c
Co-authored-by: David Leal <halfpacho@gmail.com>
* Update misc/power.c
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
Co-authored-by: David Leal <halfpacho@gmail.com>
2020-09-22 11:50:00 -05:00
Ankita19ms0010
49e8f4a7d7
feat:Add Polynomial Addition ( #600 )
...
* feat:Add Polynomial Addition
* Review changes
* updating DIRECTORY.md
* Apply suggestions from code review
Co-authored-by: David Leal <halfpacho@gmail.com>
* Corrected printing
Co-authored-by: David Leal <halfpacho@gmail.com>
* file path fixed
* updating DIRECTORY.md
* Corrected free memory
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
Co-authored-by: David Leal <halfpacho@gmail.com>
2020-09-18 12:23:49 -05:00
David Leal
3052511c14
fix: LGTM warning/alert ( #601 )
...
* fix: LGTM warning
* fix: change requested
2020-09-09 18:54:16 -04:00
Lakhan Nad
e75d0e75d7
Feature: Added segment_trees Closes #561 ( #595 )
...
* Feature: Added segment_trees Closes #561
* doc: documentation improved and explanations added
* updating DIRECTORY.md
* doc: changes in documentation
* doc: suggested doc changes and int types changed
* update: doc change for main function
Co-authored-by: David Leal <halfpacho@gmail.com>
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
Co-authored-by: David Leal <halfpacho@gmail.com>
2020-09-09 12:50:21 -04:00
Krishna Vedala
bb6c62aa62
feat: Project Euler Problem 5 - #162 ( #599 )
...
* rename existing code as sol3
* Added naive implementation for Problem 5
* Added a solution for Euler Problem 5 with easy improvements
* rename new files
* code formatting
* update documentations
* fix docs
* updating DIRECTORY.md
Co-authored-by: buffet <niclas@countingsort.com>
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
2020-09-03 08:52:21 -04:00
Krishna Vedala
23b2a290fb
feat: Project Euler Problem 7 - #167 ( #598 )
...
* Please check this solution to Q7 of Project Euler
* rename file
* fix code formatting
* added doc
* updating DIRECTORY.md
* added see-also references
Co-authored-by: adityasheth305 <43900942+adityasheth305@users.noreply.github.com>
Co-authored-by: github-actions <${GITHUB_ACTOR}@users.noreply.github.com>
2020-09-03 08:51:59 -04:00
Ayaan Khan
ce263033f8
Merge pull request #594 from kvedala/quaternions
...
[feature] added 3d geometry operations
2020-08-27 00:54:09 +05:30
Krishna Vedala
dd19e0387c
Merge branch 'master' into quaternions
2020-08-26 12:13:30 -04:00
Krishna Vedala
5d0972a246
[bug fix] fix code formatting during CI ( #597 )
...
* added explicit clang-format
* fix order - first lint and then format
this will help in maintaining code during debug of lint errors
2020-08-26 12:11:51 -04:00
Krishna Vedala
0d79101605
add alias to real part of quaternion
2020-08-17 14:01:38 -04:00
Krishna Vedala
8c4a37059d
update variable doc
2020-08-17 13:59:48 -04:00
Krishna Vedala
6fc298e699
Merge branch 'quaternions' of https://github.com/kvedala/C into quaternions
2020-08-17 13:57:41 -04:00
Krishna Vedala
27c50605df
provide alias aviable names for euler angles
2020-08-17 13:46:06 -04:00
github-actions
7ed1ee96d6
updating DIRECTORY.md
2020-08-17 02:01:25 +00:00
Krishna Vedala
0f541b2604
use fabs and explicitly mark variables as floating point
2020-08-16 22:00:16 -04:00
Krishna Vedala
956e87fcce
undo fabs change to vectors
2020-08-16 21:56:31 -04:00
Krishna Vedala
d2c867f02e
replace fabs with fabsf
2020-08-16 21:53:56 -04:00
Krishna Vedala
3b9968e595
fix file doc brief
2020-08-16 21:52:28 -04:00
Krishna Vedala
b75a201fdb
added quaternions operations
2020-08-16 21:46:45 -04:00
Krishna Vedala
1610a09e48
added vector operations file
2020-08-16 21:46:11 -04:00
Krishna Vedala
0aec326c4f
added geometry datatypes
2020-08-16 21:45:37 -04:00
Krishna Vedala
b925152b5c
fix cmake
2020-08-16 21:44:38 -04:00