Last active 1741204255

Revision 7b2ab2cd9105dc12ac274f409bc91236519d345c

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