이 기사에서는 배열 목록에서 첫 번째 요소와 마지막 요소를 가져오는 방법을 이해합니다. 목록은 요소를 순차적으로 저장하고 액세스할 수 있도록 하는 정렬된 컬렉션입니다. 여기에는 요소를 삽입, 업데이트, 삭제 및 검색하는 인덱스 기반 메서드가 포함되어 있습니다. 중복 요소가 있을 수도 있습니다.
아래는 동일한 데모입니다 -
입력이 다음과 같다고 가정 -
Input list: [40, 60, 150, 300]
원하는 출력은 -
The first element is : 40 The last element is : 300
알고리즘
Step 1 - START Step 2 - Declare ArrayList namely input_list. Step 3 - Define the values. Step 4 - Check of the list is not an empty list. Use the .get(0) and .get(list.size - 1) to get the first and last elements. Step 5 - Display the result Step 6 - Stop
예시 1
여기에서 모든 작업을 'main' 기능 아래에 묶습니다.
import java.util.ArrayList; public class Demo { public static void main(String[] args){ ArrayList<Integer> input_list = new ArrayList<Integer>(5); input_list.add(40); input_list.add(60); input_list.add(150); input_list.add(300); System.out.print("The list is defined as: " + input_list); int first_element = input_list.get(0); int last_element = input_list.get(input_list.size() - 1); System.out.println("\nThe first element is : " + first_element); System.out.println("The last element is : " + last_element); } }
출력
The list is defined as: [40, 60, 150, 300] The first element is : 40 The last element is : 300
예시 2
여기에서 객체 지향 프로그래밍을 나타내는 함수로 작업을 캡슐화합니다.
import java.util.ArrayList; public class Demo { static void first_last(ArrayList<Integer> input_list){ int first_element = input_list.get(0); int last_element = input_list.get(input_list.size() - 1); System.out.println("\nThe first element is : " + first_element); System.out.println("The last element is : " + last_element); } public static void main(String[] args){ ArrayList<Integer> input_list = new ArrayList<Integer>(5); input_list.add(40); input_list.add(60); input_list.add(150); input_list.add(300); System.out.print("The list is defined as: " + input_list); first_last(input_list); } }
출력
The list is defined as: [40, 60, 150, 300] The first element is : 40 The last element is : 300