Book to Learn Java Language (in Brazilian portuguese)
Learning data structure and algorithms with java by using a Youtube video from
@Bro Code
channe. The link access is the follows: Learn Data Structures and Algorithms for free
- Stack
- Queues
- Priority Queues
- Linked List
- Dynamic Arrays
- Linked List vs Array lists
- hash tables
- Graphs
- Adjacency Matrix
- Adjacency List
- Tree
- Linear Search
O(n)
- Binary Search
O(log n)
- Interpolation Search
O(log(log(n)))
- Bubble Sort
O(n^2)
- Selection Sort
O(n^2)
- Insertion Sort
O(n^2)
- Merge Sort
- quick Sort
O(n log n)
- Depth First Search
- Breadth First Search
- Tree Binary Search
- Tree Transversal
The workspace contains two folders by default, where:
src
: the folder to maintain sourceslib
: the folder to maintain dependencies
Meanwhile, the compiled output files will be generated in the bin
folder by default.
If you want to customize the folder structure, open
.vscode/settings.json
and update the related settings there.
The JAVA PROJECTS
view allows you to manage your dependencies. More details can be found here.