Skip to content

Commit

Permalink
Merge pull request #1267 from ImmidiSivani/feature/add-new-contents-a…
Browse files Browse the repository at this point in the history
…lgods

added Algorithm by languages in dsa
  • Loading branch information
jfmartinz authored Jun 18, 2024
2 parents 7c90801 + d4a65a5 commit 7a49978
Showing 1 changed file with 69 additions and 1 deletion.
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

0 comments on commit 7a49978

Please sign in to comment.