এই নিবন্ধে, আমরা বুঝতে পারব কিভাবে লিঙ্ক করা তালিকাকে একটি অ্যারেতে রূপান্তর করা যায় এবং এর বিপরীতে। শুরু বা শেষ, যেটি নির্দিষ্ট সূচকের কাছাকাছি।
নীচে একই -
এর একটি প্রদর্শন রয়েছে৷ধরুন আমাদের ইনপুট হল −
The list is defined as: [Java, Python, Scala, Mysql]
কাঙ্খিত আউটপুট হবে −
The result array is: Java Python Scala Mysql
অ্যালগরিদম
Step 1 - START Step 2 - Declare namely Step 3 - Define the values. Step 4 - Create a list and add elements to it using the ‘add’ method. Step 5 - Display the list on the console. Step 6 - Create another empty list of previous list size. Step 7 - Convert it into array using the ‘toArray’ method. Step 8 - Iterate over the array and display the elements on the console. Step 9 - Stop
উদাহরণ 1
এখানে, আমরা তালিকাটিকে একটি অ্যারেতে রূপান্তর করি৷
import java.util.LinkedList; public class Demo { public static void main(String[] args) { System.out.println("The required packages have been imported"); LinkedList<String> input_list= new LinkedList<>(); input_list.add("Java"); input_list.add("Python"); input_list.add("Scala"); input_list.add("Mysql"); System.out.println("The list is defined as: " + input_list); String[] result_array = new String[input_list.size()]; input_list.toArray(result_array); System.out.print("\nThe result array is: "); for(String elements:result_array) { System.out.print(elements+" "); } } }
আউটপুট
The required packages have been imported The list is defined as: [Java, Python, Scala, Mysql] The result array is: Java Python Scala Mysql
উদাহরণ 2
এখানে, আমরা একটি অ্যারেকে একটি তালিকায় রূপান্তর করি৷
import java.util.Arrays; import java.util.LinkedList; public class Demo { public static void main(String[] args) { System.out.println("The required packages have been imported"); String[] result_array = {"Java", "Python", "Scala", "Mysql"}; System.out.println("The elements of the result_array are defined as: " + Arrays.toString(result_array)); LinkedList<String> result_list= new LinkedList<>(Arrays.asList(result_array)); System.out.println("\nThe elements of the result list are: " + result_list); } }
আউটপুট
The required packages have been imported The elements of the result_array are defined as: [Java, Python, Scala, Mysql] The elements of the result list are: [Java, Python, Scala, Mysql]