Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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