Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added Algorithm by languages in dsa #1267

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
70 changes: 69 additions & 1 deletion Data Structures and Algorithm (DSA)/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ This section serves as a curated collection of valuable resources for learning a
- [Python](#python)<br>
- [Javascript](#javascript)<br>
- [CheatSheet](#cheatsheet)
- [Algorithm by Languages](#algorithm-by-languages)
- [Conclusion](#conclusion)

## Roadmap
Expand Down Expand Up @@ -515,6 +515,74 @@ To the Point, Short and Practical - These 3 terms defines our Content
</tr>
</table>

### Algorithms by Languages
> Here are some Sorting and Searching Algorithms resources and their Implementation in different Languages.
### JavaScript
<table width="100%" id="algorithms-by-languages">
<tr>
<th>Resource Name</th>
<th>Description</th>

</tr>
<tr>
<td><a href="https://www.youtube.com/watch?v=P6XGSKO2RzI&t=519s">Quick Sort</a></td>
<td>This tutorial explains about quick sort and provides implementation in javascript and tells about importance of quick sort</td>
</tr>
<tr>
<td><a href="https://www.youtube.com/watch?v=x_Z9FcAPmbk&t=1s">Merge Sort</a></td>
<td>This tutorial explains about merge sort and provides implementation in javascript in different methods</td>
</tr>
<tr>
<td><a href="https://www.youtube.com/watch?v=75jGy1xAhhs&t=2s">Binary Search</a></td>
<td>This tutorial explains about Binary Search and provides implementation in javascript .Binary Search is optimal Searching Algorithm it reduces time complexity than linear search</td>
</tr>
</table>

### Java
<table width="100%" id="algorithms-by-languages">
<tr>
<th>Resource Name</th>
<th>Description</th>

</tr>
<tr>
<td><a href="https://www.youtube.com/watch?v=h8eyY7dIiN4&t=2s">Quick Sort</a></td>
<td>This tutorial explains about quick sort and provides implementation in Java and tells about importance of quick sort.</td>
</tr>
<tr>
<td><a href="https://www.youtube.com/watch?v=bOk35XmHPKs&t=1s">Merge Sort</a></td>
<td>This tutorial explains about merge sort and provides implementation in java in different methods</td>
</tr>
<tr>
<td><a href="https://www.youtube.com/watch?v=NFhOrxtXXcM&t=1s">Binary Search</a></td>
<td>This tutorial explains about Binary Search and provides implementation in java .Binary Search is optimal Searching Algorithm it reduces time complexity than linear search</td>
</tr>
</table>

### Python

<table width="100%" id="algorithms-by-languages">
<tr>
<th>Resource Name</th>
<th>Description</th>

</tr>
<tr>
<td><a href="https://www.youtube.com/watch?v=kFeXwkgnQ9U&t=1s">Quick Sort</a></td>
<td>This tutorial explains about quick sort and provides implementation in Python and tells about importance of quick sort</td>
</tr>
<tr>
<td><a href="https://www.youtube.com/watch?v=cVZMah9kEjI&t=1s">Merge Sort</a></td>
<td>This tutorial explains about merge sort and provides implementation in Python in different methods</td>
</tr>
<tr>
<td><a href="https://www.youtube.com/watch?v=cVZMah9kEjI&t=1s">Binary Search</a></td>
<td>This tutorial explains about Binary Search and provides implementation in Python .Binary Search is optimal Searching Algorithm it reduces time complexity than linear search</td>
</tr>


</table>

## Conclusion

It is relatively easy to learn new programming languages while using them in projects. However, it is not the case with DSA as it needs extensive practice and holds utmost importance. If you are not well versed with DSA, you will find it challenging to optimize the code solution for a problem.
Expand Down
Loading