Himanshu40 / Sorting-Algorithm

A handful list of Sorting Algorithms
14 stars 31 forks source link

Add more sorting algorithm #4

Open Himanshu40 opened 4 years ago

Himanshu40 commented 4 years ago

Thinking to add more algorithms rather than only sorting algorithm.

Jaidev2001 commented 4 years ago

Can i add algorithms with c++ language?

ApoorvaKaushal09 commented 3 years ago

Hey can I add the bucket sort code in java?

Himanshu40 commented 3 years ago

Hey can I add the bucket sort code in java?

Sure go for it.

akarshan2602 commented 3 years ago

@Himanshu40 hey, can i add the cyclic sort code in java? Didn't see it there

Himanshu40 commented 3 years ago

@Himanshu40 hey, can i add the cyclic sort code in java? Didn't see it there

Yeah, sure. Go for it.

akarshan2602 commented 3 years ago

Yeh thanks!

On Sat, 2 Oct 2021, 10:30 pm Himanshu Sekhar Nayak, < @.***> wrote:

@Himanshu40 https://github.com/Himanshu40 hey, can i add the cyclic sort code in java? Didn't see it there

Yeah, sure. Go for it.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/Himanshu40/Sorting-Algorithm/issues/4#issuecomment-932784322, or unsubscribe https://github.com/notifications/unsubscribe-auth/AKS2NWKMS73OWWC73AQVNTDUE43DHANCNFSM4SDPP6FA . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

akarshan2602 commented 3 years ago

will this be counted for hacktoberfest?? im new to these so idk much

Himanshu40 commented 3 years ago

will this be counted for hacktoberfest?? im new to these so idk much

Yeah, it will be counted towards hacktoberfest. Be sure to check README and CONTRIBUTING guide.

akarshan2602 commented 3 years ago

Ok thanks!

On Sun, 3 Oct 2021, 10:19 am Himanshu Sekhar Nayak, < @.***> wrote:

will this be counted for hacktoberfest?? im new to these so idk much

Yeah, it will be counted towards hacktoberfest. Be sure to check README and CONTRIBUTING guide.

— You are receiving this because you commented. Reply to this email directly, view it on GitHub https://github.com/Himanshu40/Sorting-Algorithm/issues/4#issuecomment-932862702, or unsubscribe https://github.com/notifications/unsubscribe-auth/AKS2NWNLJA7JSPWQUBS52MTUE7OHNANCNFSM4SDPP6FA . Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.

AnshuAyush commented 3 years ago

Hey Can I include some searching algorithms like Binary, Linear, BFS,DFS

Himanshu40 commented 3 years ago

Hey Can I include some searching algorithms like Binary, Linear, BFS,DFS

Yeah sure. But make sure to create a Search-Algorithm dir before making PR.

sRahul-00 commented 3 years ago

Hey Himanshu, can I add recursive approaches of Insertion and Bubble sort.

Himanshu40 commented 3 years ago

Hey Himanshu, can I add recursive approaches of Insertion and Bubble sort.

Yeah sure. Go for it. And make sure to name the file as RecursiveBubbleSort.extension where the extension can be any language.

AnshuAyush commented 3 years ago

Hey Can I include some searching algorithms like Binary, Linear, BFS,DFS

Yeah sure. But make sure to create a Search-Algorithm dir before making PR.

Hey its saying "Please make sure you have the correct access rights"

Himanshu40 commented 3 years ago

Hey Can I include some searching algorithms like Binary, Linear, BFS,DFS

Yeah sure. But make sure to create a Search-Algorithm dir before making PR.

Hey its saying "Please make sure you have the correct access rights"

Yeah, you are cloning my repo instead of your forked repo. Make sure that you forked my repo and clone from your repo not from me.

AnshuAyush commented 3 years ago

Hey Can I include some searching algorithms like Binary, Linear, BFS,DFS

Yeah sure. But make sure to create a Search-Algorithm dir before making PR.

Hey its saying "Please make sure you have the correct access rights"

Yeah, you are cloning my repo instead of your forked repo. Make sure that you forked my repo and clone from your repo not from me.

"remote: Permission to Himanshu40/Sorting-Algorithm.git denied to AnshuAyush" Can't help myself tried many ways !!

Himanshu40 commented 3 years ago

Hey Can I include some searching algorithms like Binary, Linear, BFS,DFS

Yeah sure. But make sure to create a Search-Algorithm dir before making PR.

Hey its saying "Please make sure you have the correct access rights"

Yeah, you are cloning my repo instead of your forked repo. Make sure that you forked my repo and clone from your repo not from me.

"remote: Permission to Himanshu40/Sorting-Algorithm.git denied to AnshuAyush" Can't help myself tried many ways !!

Because you are cloning my repo instead of your forked from mine. You can check using $ git remote -v in your repo after cloning into your PC.

sRahul-00 commented 3 years ago

Hey Himanshu, can I add recursive approaches of Insertion and Bubble sort.

Yeah sure. Go for it. And make sure to name the file as RecursiveBubbleSort.extension where the extension can be any language.

Sure thing, I have made a PR #77, if there is any fault, let me know...

PrachiDadhich commented 3 years ago

Hey can I implement Hashing for searching (Java)

Himanshu40 commented 3 years ago

Hey can I implement Hashing for searching (Java)

That will be a searching algorithm. If you are interested to add Hashing, you can create a Searching_Algorithm/ dir, and inside that dir, you can create Hashing/ dir to store your code. Go ahead and hit me a PR.