| Free tutorials for Java, Eclipse and Web programming |
Version 0.3
Copyright © 2009 Lars Vogel
26.10.2009
| Revision History | ||
|---|---|---|
| Revision 0.1 | 01.09.2009 | Lars Vogel |
| Created | ||
| Revision 0.2 | 03.10.2009 | Lars Vogel |
| Adjusted article | ||
| Revision 0.3 | 26.10.2009 | Lars Vogel |
| Finished binary search | ||
Table of Contents
The following article will discuss the implementation of different search algorithms in Java for finding elements in a collections.
Searching in collection is done to answer the questions:
Does the element exists in the collections
Get the element from the collection
Delete the element from the collection
Collection in this article is used in the broader sense and not in the strict Java sense. For example collection we are looking at my be array or lists.