Last active 1741204255

Revision c0a388a58f474c2f414b368c2a814d4c0db50d0d

ArrayListExamples.java Raw
1import java.util.ArrayList;
2import java.util.Collections;
3import java.util.Comparator;
4import java.util.Scanner;
5
6
7// See below for information on this class.
8public class ArrayListExamples {
9
10 public static void main(String[] args) {
11 // Example 1: Student Management System
12 studentManagementSystem();
13
14 System.out.println("\n-----------------------------------\n");
15
16 // Example 2: Shopping Cart Implementation
17 shoppingCartExample();
18 }
19
20 /**
21 * Example 1: Student Management System
22 * Demonstrates adding, removing, searching, and sorting students
23 */
24 public static void studentManagementSystem() {
25 System.out.println("STUDENT MANAGEMENT SYSTEM EXAMPLE");
26
27 // Create an ArrayList to store student names
28 ArrayList<String> students = new ArrayList<>();
29
30 // Add students to the list
31 students.add("Emma Johnson");
32 students.add("Liam Smith");
33 students.add("Olivia Williams");
34 students.add("Noah Brown");
35 students.add("Ava Jones");
36
37 // Display all students
38 System.out.println("Current Students:");
39 for (int i = 0; i < students.size(); i++) {
40 System.out.println((i + 1) + ". " + students.get(i));
41 }
42
43 // Add a new student at a specific position (third position)
44 students.add(2, "Mason Davis");
45 System.out.println("\nAfter adding Mason Davis at position 3:");
46 displayList(students);
47
48 // Check if a student exists
49 String searchName = "Ava Jones";
50 if (students.contains(searchName)) {
51 System.out.println("\nFound student: " + searchName);
52 System.out.println("Position: " + (students.indexOf(searchName) + 1));
53 } else {
54 System.out.println("\nStudent not found: " + searchName);
55 }
56
57 // Remove a student
58 students.remove("Noah Brown");
59 System.out.println("\nAfter removing Noah Brown:");
60 displayList(students);
61
62 // Sort students alphabetically
63 Collections.sort(students);
64 System.out.println("\nAlphabetically sorted students:");
65 displayList(students);
66
67 // Clear the entire list
68 students.clear();
69 System.out.println("\nAfter clearing the list, size: " + students.size());
70 }
71
72 /**
73 * Example 2: Shopping Cart Implementation
74 * Demonstrates a more complex ArrayList with custom objects
75 */
76 public static void shoppingCartExample() {
77 System.out.println("SHOPPING CART EXAMPLE");
78
79 // Create an ArrayList of items
80 ArrayList<CartItem> cart = new ArrayList<>();
81
82 // Add items to cart
83 cart.add(new CartItem("Laptop", 899.99, 1));
84 cart.add(new CartItem("Mouse", 24.99, 1));
85 cart.add(new CartItem("Keyboard", 59.99, 1));
86 cart.add(new CartItem("USB Drive", 19.99, 2));
87
88 // Display cart contents
89 System.out.println("Shopping Cart Contents:");
90 displayCart(cart);
91
92 // Calculate and display total
93 double total = 0;
94 for (CartItem item : cart) {
95 total += item.getPrice() * item.getQuantity();
96 }
97 System.out.printf("\nCart Total: $%.2f\n", total);
98
99 // Update quantity of an item
100 for (CartItem item : cart) {
101 if (item.getName().equals("USB Drive")) {
102 item.setQuantity(3);
103 System.out.println("\nUpdated USB Drive quantity to 3");
104 break;
105 }
106 }
107
108 // Display updated cart and total
109 System.out.println("\nUpdated Shopping Cart:");
110 displayCart(cart);
111
112 // Recalculate total
113 total = 0;
114 for (CartItem item : cart) {
115 total += item.getPrice() * item.getQuantity();
116 }
117 System.out.printf("\nNew Cart Total: $%.2f\n", total);
118
119 // Sort by price (using Comparator)
120 Collections.sort(cart, new Comparator<CartItem>() {
121 @Override
122 public int compare(CartItem item1, CartItem item2) {
123 return Double.compare(item1.getPrice(), item2.getPrice());
124 }
125 });
126
127 System.out.println("\nCart Items Sorted by Price (Low to High):");
128 displayCart(cart);
129
130 // Remove an item
131 cart.removeIf(item -> item.getName().equals("Mouse"));
132 System.out.println("\nAfter removing Mouse:");
133 displayCart(cart);
134 }
135
136 // Helper method to display a list of strings
137 private static void displayList(ArrayList<String> list) {
138 for (int i = 0; i < list.size(); i++) {
139 System.out.println((i + 1) + ". " + list.get(i));
140 }
141 }
142
143 // Helper method to display cart items
144 private static void displayCart(ArrayList<CartItem> cart) {
145 for (int i = 0; i < cart.size(); i++) {
146 CartItem item = cart.get(i);
147 System.out.printf("%d. %-10s $%.2f x %d = $%.2f\n",
148 i + 1,
149 item.getName(),
150 item.getPrice(),
151 item.getQuantity(),
152 item.getPrice() * item.getQuantity());
153 }
154 }
155}
156
157/**
158 * Class representing an item in a shopping cart
159 */
160class CartItem {
161 private String name;
162 private double price;
163 private int quantity;
164
165 public CartItem(String name, double price, int quantity) {
166 this.name = name;
167 this.price = price;
168 this.quantity = quantity;
169 }
170
171 public String getName() {
172 return name;
173 }
174
175 public double getPrice() {
176 return price;
177 }
178
179 public int getQuantity() {
180 return quantity;
181 }
182
183 public void setQuantity(int quantity) {
184 this.quantity = quantity;
185 }
186}
usingarraylists.md Raw

I'll share some practical examples of using the ArrayList class in Java, focusing on different real-world scenarios.

These examples demonstrate two common use cases for ArrayLists in Java:

Example 1: Student Management System

The first example shows how to use an ArrayList to manage a list of students, demonstrating:

  • Adding students to the list
  • Inserting a student at a specific position
  • Searching for students
  • Removing students
  • Sorting the list alphabetically
  • Clearing the entire list

Example 2: Shopping Cart Implementation

The second example is more complex, using an ArrayList to manage a shopping cart with custom objects:

  • Creating and storing custom objects (CartItem class)
  • Calculating totals from the items in the list
  • Finding and updating specific items in the list
  • Sorting items by price using a Comparator
  • Removing items conditionally with the removeIf() method

These examples showcase the flexibility of ArrayList and how it can be used to manage both simple collections of strings and more complex collections of custom objects. Each example includes helpful methods for displaying the current state of the list, making it easier to understand how ArrayLists work in practice.