Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/davetcc/interviewhelper
This repo is designed to help out with algorithm questions usually asked at interviews.
https://github.com/davetcc/interviewhelper
Last synced: about 2 months ago
JSON representation
This repo is designed to help out with algorithm questions usually asked at interviews.
- Host: GitHub
- URL: https://github.com/davetcc/interviewhelper
- Owner: davetcc
- Created: 2016-12-11T20:32:52.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-03-16T13:48:12.000Z (10 months ago)
- Last Synced: 2024-05-01T14:47:36.282Z (8 months ago)
- Language: Java
- Size: 13.7 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Interview Helper
A series of Java classes that help with interview revision, covering
areas such as algorithms, graphs, trees and collections. Just
to be clear, these are not designed for production use, they should
only be used for revision and educational purposes.
Recently, a friend and I got into a discussion about this subject
at work, in no other industry is there such a discrepancy between
what you'll be asked to do in an interview, and what you'll be
asked to work on upon arrival.I think it's such a shame that this divide exists, and it basically
means that we all have to revise on algorithms before interviewing.
This project should be read along with the following page on my
website:These are specifically designed to work with only core Java.
Whats in this project:
* Graph based depth first traversal
* Graph based breadth first traversal
* Very simple linked list implementation
* Sorting using quickSort and bubbleSort