Stacks
Priority Queue and Interface Comparable Java Classes
- Overview: http://www.tutorialspoint.com/java/util/java_util_priorityqueue.htm
- Priority Queue Code Example with Output: http://java-bytes.blogspot.com/2012/04/priority-queue-in-java.html
- Interface Comparator<T> http://docs.oracle.com/javase/7/docs/api/java/util/Comparator.html
- Class PriorityQueue<E> http://docs.oracle.com/javase/7/docs/api/java/util/PriorityQueue.htm
- Java Queues and Priority Queues: http://oopweb.com/Java/Documents/ThinkCSJav/Volume/chap16.htm
- Java Queue Examples: http://www.mycstutorials.com/articles/data_structures/queues
- Java Queue Interface: http://docs.oracle.com/javase/tutorial/collections/interfaces/queue.html
- Java Comparable and Comparator Example to Sort Arrays: http://www.journaldev.com/780/java-comparable-and-comparator-example-to-sort-objects
- Priority Queue: http://www.javacodegeeks.com/2013/07/java-priority-queue-priorityqueue-example.html
To be Reviewed
Java Comparator and Comparable Sorting Examples
http://www.mkyong.com/java/java-object-sorting-example-comparable-and-comparator/
http://java67.blogspot.com/2012/10/how-to-sort-object-in-java-comparator-comparable-example.html
Comparable Interface Background Reading
Collections Interfaces:
Object Ordering: Understanding the Comparable Interface and How to Write Comparable Types http://docs.oracle.com/javase/tutorial/collections/interfaces/order.html
Java Comparator and Comparable Sorting Examples
http://www.mkyong.com/java/java-object-sorting-example-comparable-and-comparator/
http://java67.blogspot.com/2012/10/how-to-sort-object-in-java-comparator-comparable-example.html
Comparable Interface Background Reading
Collections Interfaces:
Object Ordering: Understanding the Comparable Interface and How to Write Comparable Types http://docs.oracle.com/javase/tutorial/collections/interfaces/order.html
Definitions: A comparator is an object that defines the ordering of a set of objects.
Comparators are inherently related to Collections. Java collections are defined at http://docs.oracle.com/javase/tutorial/collections/TOC.html
Array
Types of Data Structures
Last In First Out
First In First Out
Circular Array
Vector
Enumeration
LinkedLists
Big O Notation
Wrapper Classes
Java Data Structure Methods
JAVA REFERENCE MATERIAL
Oracle's Java Really Big Index: http://docs.oracle.com/javase/tutorial/reallybigindex.html
Online Java Programming Book from Princeton University
http://introcs.cs.princeton.edu/java/home/
OppWeb Book: Chapter One
Java Book Index
Object Oriented Programming
The Java Collection Interface: Oracle
No comments:
Post a Comment