-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRemoveEvenLength_Q21.java
51 lines (44 loc) · 1.71 KB
/
RemoveEvenLength_Q21.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/**
* RemoveEvenLength_Q21.java
*
* This program demonstrates a method that removes all strings of even length
* from an ArrayList of Strings.
*/
import java.util.ArrayList;
import java.util.Iterator;
public class RemoveEvenLength_Q21 {
public static void main(String[] args) {
// Create an ArrayList of Strings for testing
ArrayList<String> words = new ArrayList<>();
words.add("apple"); // length 5 (odd)
words.add("banana"); // length 6 (even)
words.add("cherry"); // length 6 (even)
words.add("date"); // length 4 (even)
words.add("elderberry"); // length 11 (odd)
words.add("fig"); // length 3 (odd)
words.add("grape"); // length 5 (odd)
// Print the original list
System.out.println("Original list: " + words);
// Call the removeEvenLength method
removeEvenLength_Q21(words);
// Print the modified list
System.out.println("After removing even length strings: " + words);
}
/**
* Removes all strings of even length from the given ArrayList.
*
* @param list the ArrayList of Strings to be modified
*/
public static void removeEvenLength_Q21(ArrayList<String> list) {
// Method 1: Using Iterator (safer for removing elements during iteration)
Iterator<String> iterator = list.iterator();
while (iterator.hasNext()) {
String str = iterator.next();
if (str.length() % 2 == 0) {
iterator.remove();
}
}
// Method 2: Alternative approach using removeIf (Java 8+)
// list.removeIf(str -> str.length() % 2 == 0);
}
}