๋ชฉ๋ก๐ฆฅ ์ฝํ /JAVA (6)
๐ ๊ณต๋ถํ๋ ์ง์ง์ํ์นด๋ ์ฒ์์ด์ง?
๐ Queue Method ๐ ์์ ์ถ๊ฐ & ์ ๊ฑฐ & ๋น์ฐ๊ธฐ & ํ์ธ import java.util.*; import java.io.*; // tip: each public class is put in its own file public class main { // tip: arguments are passed via the field below this editor public static void main(String[] args) { Queue queue = new LinkedList(); //ํ์ ์์ ์ถ๊ฐ(enqueue) queue.add(1); queue.add(4); queue.add(5); System.out.println(queue); //ํ์์ ์์ ์ ๊ฑฐ(dequeue) queue.re..
๐ Stack Method ๐ ์์ ์ถ๊ฐ & ์ ๊ฑฐ & ๋น์ฐ๊ธฐ & ์ ๋ฌด ํ์ธ import java.util.*; import java.io.*; // tip: each public class is put in its own file public class main { // tip: arguments are passed via the field below this editor public static void main(String[] args) { ArrayList list = new ArrayList(Arrays.asList(0, 3, 2, 1, 5)); System.out.println(list); // [0, 3, 2, 1, 5] //์ ์ํ List ์์ ์ค ์ต๋, ์ต์๊ฐ System.out.print..
๐ List Method ๐ ์์ ์ฝ์ & ํน์ ์ธ๋ฑ์ค ์ฝ์ & ๋ณํฉ & ๋ฐํ & ์ญ์ import java.util.*; import java.io.*; // tip: each public class is put in its own file public class main { // tip: arguments are passed via the field below this editor public static void main(String[] args) { List list = new ArrayList(); List list2 = new ArrayList(); //์์ ์ฝ์ list.add("one"); //ํน์ ์ธ๋ฑ์ค์ ์์ ์ฝ์ list.add(0, "zero"); System.out.println(..
๐ StringBuilder Method : String์ ํ๋ฒ ๋ง๋ค์ด์ง๋ฉด ๋ฌธ์๋ฅผ ์ถ๊ฐํ๊ฑฐ๋ ์ญ์ ํ ์ ์์ : StringBuilder ์ ๋ณ๊ฒฝ์ด ๊ฐ๋ฅ ๐ ๋ฌธ์์ด ์ถ๊ฐ & ํน์ ์ธ๋ฑ์ค์ ๋ฌธ์ ์ฝ์ & ๋ฌธ์์ด ์ญ์ & ํน์ ์ธ๋ฑ์ค์ ๋ฌธ์ ์ญ์ // tip: each public class is put in its own file public class main { // tip: arguments are passed via the field below this editor public static void main(String[] args) { StringBuilder sb = new StringBuilder(); //๋ฌธ์์ด ์ถ๊ฐ System.out.println(sb.append("apple")); //..
๐ String Method ๐ ๊ธธ์ด ๋ฐํ & ๋ฌธ์์ด ์ฒดํฌ & ๋ฌธ์ ์ฐพ๊ธฐ import java.util.*; import java.io.*; // tip: each public class is put in its own file public class main { // tip: arguments are passed via the field below this editor public static void main(String[] args) { String str = "My name is gani"; // ๊ธธ์ด ๋ฐํ System.out.println(str.length()); // ๋น ๋ฌธ์์ด ์ฒดํฌ System.out.println(str.isEmpty()); // ๋ฌธ์ ์ฐพ๊ธฐ System.out.printl..
๐ ์ซ์ ๋ฐฐ์ด ์ ๋ ฌ ๐ ์ค๋ฆ์ฐจ์ ๋ณ์ arr์ ์์๋ฅผ ๋ณ๊ฒฝํด์ฃผ๊ธฐ ๋๋ฌธ์ ๋ฆฌํด ๊ฐ์ ๋ค๋ฅธ ๋ณ์์ ํ ๋นํ ํ์๊ฐ ์์ import java.util.*; import java.io.*; // tip: each public class is put in its own file public class main { // tip: arguments are passed via the field below this editor public static void main(String[] args) { int[] arr = { 1, 26, 17, 25, 99, 44, 303 }; // ๋ณ์ arr์ ์์๋ฅผ ๋ณ๊ฒฝํด์ฃผ๊ธฐ ๋๋ฌธ์ ๋ฆฌํด ๊ฐ์ ๋ค๋ฅธ ๋ณ์์ ํ ๋นํ ํ์๊ฐ ์์ Arrays.sort(arr); System.out.pri..