https://github.com/freddydrew/deepdiveusingjava
Where I keep all of my class work from Udemy's Data Structures & Algorithms: Deep Dive Using Java course.
https://github.com/freddydrew/deepdiveusingjava
arraylist arrays data-structures hashtable heaps linked-list queues search-algorithms sorting-algorithms stacks trees
Last synced: 3 months ago
JSON representation
Where I keep all of my class work from Udemy's Data Structures & Algorithms: Deep Dive Using Java course.
- Host: GitHub
- URL: https://github.com/freddydrew/deepdiveusingjava
- Owner: freddydrew
- Created: 2022-09-20T20:47:01.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-20T14:10:13.000Z (over 3 years ago)
- Last Synced: 2024-11-10T03:02:58.993Z (about 1 year ago)
- Topics: arraylist, arrays, data-structures, hashtable, heaps, linked-list, queues, search-algorithms, sorting-algorithms, stacks, trees
- Language: Java
- Homepage:
- Size: 224 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Deep Dive Using Java!
This is where I keep all my work from the course Data Structures & Algorithms: Deep Dive Using Java. The course page can be found [here](https://www.udemy.com/course/data-structures-and-algorithms-deep-dive-using-java/) on Udemy. The course covers the following topics to varying degrees:
- Arrays
- Sort Algorithms
- Lists
- Stacks
- Queues
- Hashtables
- Seach Algorithms
- Trees
- Heaps
- Sets
**The course does not cover graphs or time and space complexity very well**. I have learned these topics from other resources but have chose to keep all of the work related to that learning here, as I consider it part of my journey to learn Data Structures & Algorithms well. I used many other resources as supplements to this course in addition to those I used to familiarize myself with topics not covered by the lectures. The list below is not meant to be comprehensive in any way. It contains a few of these resources and acts solely as a reminder to myself.
- [BroCode YouTube.](https://www.youtube.com/c/BroCodez)
- [UC Berkeley's 2022 CS 61B Data Structures Course.](https://fa22.datastructur.es/)
- My repository for that class can be found [here.](https://github.com/freddydrew/cs61b)