π 곡λΆνλ μ§μ§μνμΉ΄λ μ²μμ΄μ§?
[JAVA μ½λ© μ΄λ³΄] Queue (ν) Method λ³Έλ¬Έ
728x90
λ°μν
<λ³Έ λΈλ‘κ·Έλ codechacha λμ λΈλ‘κ·Έλ₯Ό μ°Έκ³ ν΄μ 곡λΆνλ©° μμ±νμμ΅λλ€ :-)>
π 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<Integer> queue = new LinkedList<>();
//νμ μμ μΆκ°(enqueue)
queue.add(1);
queue.add(4);
queue.add(5);
System.out.println(queue);
//νμμ μμ μ κ±°(dequeue)
queue.remove(4); // λ¬Έμ μν©μμ μμΈ λ°μ
System.out.println(queue);
//ν λΉμ°κΈ°
queue.clear();
System.out.println(queue);
//νμ μ΅μ λ°© μμ νμΈ
queue.element(); // λ¬Έμ μν©μμ μμΈ λ°μ
queue.peek(); // λ¬Έμ μν©μμ null 리ν΄
}
}
728x90
λ°μν
'π¦₯ μ½ν > JAVA' μΉ΄ν κ³ λ¦¬μ λ€λ₯Έ κΈ
[JAVA μ½λ© μ΄λ³΄] Stack (리μ€νΈ) Method (0) | 2023.07.16 |
---|---|
[JAVA μ½λ© μ΄λ³΄] List (리μ€νΈ) Method (0) | 2023.07.16 |
[JAVA μ½λ© μ΄λ³΄] StringBuilder(μ€νΈλ§λΉλ) Method (0) | 2023.07.16 |
[JAVA μ½λ© μ΄λ³΄] String(μ€νΈλ§) Method (0) | 2023.07.16 |
[JAVA μ½λ© μ΄λ³΄] λ°°μ΄ μ λ ¬ (μ€λ¦μ°¨μ, λ΄λ¦Όμ°¨μ) (0) | 2023.07.16 |
Comments