– 자료구조란 무엇인가? (Data Structure)
- 프로그램에서 사용할 많은 데이터를 메모리 상에서 관리하는 여러 구현방법들
- 효율적인 자료구조가 성능 좋은 알고리즘의 기반이 됨
- 자료의 효율적인 관리는 프로그램의 수행속도와 밀접한 관련이 있음
- 여러 자료 구조 중에서 구현 하려는 프로그램에 맞는 최적의 자료구조를 활용해야 하므로 자료구조에 대한 이해가 중요함
– 자료구조에는 어떤 것들이 있나?
- 한 줄로 자료를 관리하기 (선형 자료구조)
- 배열 (Array) : 선형으로 자료를 관리, 정해진 크기의 메모리를 먼저 할당받아 사용하고, 자료의 물리적 위치와 논리적 위치가 같음
- 연결리스트 (LinkedList) : 선형으로 자료를 관리, 자료가 추가될 때마다 메모리를 할당 받고, 자료는 링크로 연결됨, 자료의 물리적 위치와 논리적 위치가 다를 수 있음
- 스택 (Stack) : 가장 나중에 입력된 자료가 가장 먼저 출력되는 자료 구조 (Last In First Out)
- 큐 (Queue) : 가장 먼저 입력 된 자료가 가장 먼저 출력되는 자료 구조 (First In First Out)
- 트리 (Tree) : 부모 노드와 자식 노드간의 연결로 이루어진 자료 구조
- 힙 (heap) : Priority queue 를 구현 (우선 큐)
- Max heap : 부모 노드는 자식 노드보다 항상 크거나 같은 값을 갖는 경우
- Min heap : 부모 노드는 자식 노드보다 항상 작거나 같은 값을 갖는 경우
- heap 정렬에 활용 할 수 있음
- 이진 트리 (binary tree) : 부모 노드에 자식 노드가 두 개 이하인 트리
- 그래프 (Graph) : 정점과 간선들의 유한 집합 G =(V , E)
- 정점 (vertex) : 여러 특성을 가지는 객체, 노드 (node)
- 간선 (edge) : 이 객체들을 연결 관계를 나타냄, 링크 (link)
- 간선은 방향이 있는 경우와 없는 경우가 있음
- 그래프를 구현하는 방법 : 인접 행렬(adjacency matrix), 인접 리스트 (adjacency list)
- 그래프를 탐색하는 방법 : BFS (bread first search), DFS (depth first search)
- 해싱 (Hashing) : 자료를 검색하기 위한 자료 구조
- 검색을 위한 자료 구조
- 키 (key)에 대한 자료를 검색하기 위한 사전 (dictionary) 개념의 자료 구조
- key 는 유일하고 이에 대한 value 를 쌍으로 저장
- index = h(key) : 해시 함수가 key에 대한 인덱스를 반환해줌 해당 인덱스 위치에 자료를 저장하거나 검색하게 됨
- 해시 함수에 의해 인덱스 연산이 산술적으로 가능 O(1)
- 저장되는 메모리 구조를 해시테이블이라 함
- jdk 클래스 : HashMap, Properties
– Array 구현하기
자바에서 배열(Array)은 동일한 타입의 여러 요소를 하나의 변수로 저장할 수 있는 자료구조입니다. 배열은 고정된 크기를 가지며, 인덱스를 사용하여 각 요소에 접근할 수 있습니다.
- 동일한 데이터 타입을 순서에 따라 관리하는 자료 구조
- 정해진 크기가 있음
- 요소의 추가와 제거시 다른 요소들의 이동이 필요함
- 배열의 i 번째 요소를 찾는 인덱스 연산이 빠름
- jdk 클래스 : ArrayList, vector
public class MyArray {
int[] intArr;
int count;
public int ARRAY_CAPACITY;
public static final int ERROR_NUM = -9999999;
public MyArray(){
count = 0;
ARRAY_CAPACITY = 10;
intArr = new int[ARRAY_CAPACITY];
}
public MyArray(int size){
count = 0;
ARRAY_CAPACITY = size;
intArr = new int[ARRAY_CAPACITY];
}
public void addElement(int num){
if (count >= ARRAY_CAPACITY){
System.out.println("not enough memory");
return;
}
intArr[count++] = num;
}
public void insertElement(int position, int num){
if (count >= ARRAY_CAPACITY){
System.out.println("not enough memory");
return;
}
if (position < 0 || position > count){
System.out.println("inset error");
}
for (int i = count-1; i >= position; i--){
intArr[i+1] = intArr[i];
}
intArr[position] = num;
count++;
}
public int removeElement(int position){
int ret = ERROR_NUM;
if (isEmpty()){
System.out.println("There is no element");
return ret;
}
if (position < 0 || position >= count){
System.out.println("insert error");
return ret;
}
ret = intArr[position];
for (int i = position; i < count; i++){
intArr[i] = intArr[i+1];
}
count--;
return ret;
}
public int getSize()
{
return count;
}
public boolean isEmpty()
{
if(count == 0){
return true;
}
else return false;
}
public int getElement(int position)
{
if(position < 0 || position > count-1){
System.out.println("검색 위치 오류. 현재 리스트의 개수는 " + count +"개 입니다.");
return ERROR_NUM;
}
return intArr[position];
}
public void printAll()
{
if(count == 0){
System.out.println("출력할 내용이 없습니다.");
return;
}
for(int i=0; i<count; i++){
System.out.println(intArr[i]);
}
}
public void removeAll()
{
for(int i=0; i<count; i++){
intArr[i] = 0;
}
count = 0;
}
}
public class MyArrayTest {
public static void main(String[] args) {
MyArray array = new MyArray();
array.addElement(10);
array.addElement(20);
array.addElement(30);
array.insertElement(1, 50);
array.printAll();
System.out.println("=====================");
array.removeElement(1);
array.printAll();
System.out.println("=====================");
array.addElement(70);
array.printAll();
System.out.println("=====================");
array.removeElement(1);
array.printAll();
System.out.println("=====================");
System.out.println(array.getElement(2));
}
}