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