Practical Coding in Java

Learn to write and validate your own code

Darren Kessner, PhD

(revised October 21, 2025)

Previous: Coding Exercises: ArrayList

7. Array Algorithms

In this chapter we explore various computations you can perform on lists of things. The list can be an array or ArrayList, and the things could be any basic type or object.

We will explore the following types of algorithms:


Next: