9일차, 10일차에 배우너 컬렉션 프레임워크는 자주 사용되는 클래스이므로 기억해두면 좋을 것같다.
HashSet<타입> 참조변수 = new HashSet();
import java.util.HashSet;
import java.util.Iterator;
public class HashSet1 {
public static void main(String[] args) {
HashSet<String> hashSet1 = new HashSet<>();
HashSet<String> hashSet2 = new HashSet<>();
hashSet1.add("김사과");
hashSet1.add("반하나");
hashSet1.add("오렌지"); // 데이터의 순서를 정해주지 않는다.
System.out.println(hashSet1);
hashSet1.add("김사과"); // 같은 데이터가 못들어간다.
System.out.println(hashSet1);
for(String s : hashSet1){
System.out.print(s + " ");
}
System.out.println("요소의 개수 : " + hashSet1.size());
hashSet2.add("김사과");
hashSet2.add("반하나");
hashSet2.add("배애리");
System.out.println(hashSet2);
Iterator<String> iterator = hashSet2.iterator();
while(iterator.hasNext()){ // hasNext() 메소드는 가져올 객체가 있으면 true를 리턴하고 더 이상 가져올 객체가 없으면 false를 리턴
System.out.print(iterator.next() + " ");
}
}
}
TreeSet treeSet = new TreeSet();
Map<key, value> map = new HashMap<key, value>;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;
public class HashMap1 {
public static void main(String[] args) {
HashMap<String, String> hashMap = new HashMap<>();
hashMap.put("apple", "김사과");
hashMap.put("banana", "반하나");
hashMap.put("orange", "오렌지");
hashMap.put("melon", "이메론");
hashMap.put("berry", "배애리");
System.out.println(hashMap); // {banana=반하나, orange=오렌지, apple=김사과, berry=배애리, melon=이메론}
System.out.println(hashMap.get("orange"));
System.out.println(hashMap.keySet()); // 키 값만 출력
System.out.println(hashMap.entrySet()); // 모든 데이터 출력
for(String k : hashMap.keySet()){
System.out.println("[key] : " + k + ", [value] : " + hashMap.get(k));
}
System.out.println();
for(Map.Entry<String, String> entry : hashMap.entrySet()){
System.out.println("[key] : " + entry.getKey() + ", [value] : " + entry.getValue());
}
hashMap.remove("melon"); // 제거
System.out.println(hashMap);
hashMap.replace("berry", "배리"); // 변경
Iterator<String> keys = hashMap.keySet().iterator();
while(keys.hasNext()){
String key = keys.next();
System.out.println("[key] : " + key + ", [value] : " + hashMap.get(key));
}
}
}
TreeMap<key, value> treeMap = new TreeMap<key, value>();
Map<key, value> map = new Hashtable<key, value>;
자바는 HashMap을 지원하기 때문에 HashTable을 구현하거나 사용하는 경우가 많이 없다.
키와 값의 데이터를 테이블에 저장
/*
백준 2920번 음계
*/
import java.util.Scanner;
public class Sort {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int[] data = new int[8];
boolean ascending = true;
boolean descending = true;
for(int i = 0; i < data.length; i++){
data[i] = sc.nextInt();
}
for(int i = 1; i< data.length; i++){
if(data[i] > data[i-1]) descending = false;
if(data[i] < data[i-1]) ascending = false;
}
if(ascending) System.out.println("ascending");
else if(descending) System.out.println("descending");
else System.out.println("mixed");
}
}
import java.util.ArrayList;
import java.util.Scanner;
import java.util.Stack;
/*
백준 1874번 스택 수열
*/
public class Main3 {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
Stack<Integer> s = new Stack();
ArrayList<Character> result = new ArrayList<>();
int num = sc.nextInt();
int cnt = 1;
for(int i=0; i < num; i++){
int x = sc.nextInt();
while(cnt <= x){
s.push(cnt);
cnt += 1;
result.add('+');
}
if(s.peek() == x){
s.pop();
result.add('-');
} else {
System.out.println("NO");
return;
}
}
for(int i =0; i<result.size(); i++){
System.out.println(result.get(i));
}
}
}
개념을 보며 이해할때는 이해가 갔다고 생각했는데 마지막에 있는 연습문제2개를 직접풀어보려 하니 막상 못풀었다,, 이렇게 코드를 볼땐 생각보다 쉬운 코드인데 너무 어렵게 생각하려니까 안되는 것같았다ㅜ