Home > Articles > Programming > Algorithms

Algorithms

4 Items

Sort by Date | Title

Algorithms: String Sorts
Mar 20, 2014
For many sorting applications, the keys that define the order are strings. In this section from Algorithms, Part II, the authors look at methods that take advantage of special properties of strings to develop sorts for string keys that are more efficient than general-purpose sorts.
Algorithms: The Basic Programming Model
Mar 13, 2014
The authors of Algorithms, Part I describe a complete programming model using the Java programming language.
Introduction to the Analysis of Algorithms
Feb 7, 2013
This chapter provides perspective on various approaches to studying algorithms, places the field of study into context among related fields, and sets the stage for the rest of the book. To this end, the authors illustrate concepts within a fundamental and representative problem domain: the study of sorting algorithms.
Simple Sorting in Java
Apr 18, 2003
Should you be comparing, swapping, or bubbling your data? Learn the basics of bubble, selection, and insertion sorts and figure out which one is the best for you.