diff --git "a/_posts/2023-06-19-Jekyll\352\263\274-Chirpy-\355\205\214\353\247\210\353\245\274-\355\206\265\355\225\234-Github-Pages-\354\213\234\354\236\221.md" b/_posts/2023-06-19-github-pages-with-jekyll-chirpy-theme.md similarity index 99% rename from "_posts/2023-06-19-Jekyll\352\263\274-Chirpy-\355\205\214\353\247\210\353\245\274-\355\206\265\355\225\234-Github-Pages-\354\213\234\354\236\221.md" rename to _posts/2023-06-19-github-pages-with-jekyll-chirpy-theme.md index 415d335..60d8037 100644 --- "a/_posts/2023-06-19-Jekyll\352\263\274-Chirpy-\355\205\214\353\247\210\353\245\274-\355\206\265\355\225\234-Github-Pages-\354\213\234\354\236\221.md" +++ b/_posts/2023-06-19-github-pages-with-jekyll-chirpy-theme.md @@ -3,7 +3,7 @@ title: Jekyll과 Chirpy 테마를 통한 Github Pages 시작 date: 2023-06-19 12:30 +0900 categories: [Jekyll] tags: [jekyll] -img_path: /assets/img/posts/2023-06-19-Jekyll과-Chirpy-테마를-통한-Github-Pages-시작/ +img_path: /assets/img/posts/2023-06-19-github-pages-with-jekyll-chirpy-theme/ --- ![Chirpy theme](chirpy.png){: w="250" h="250"} diff --git "a/_posts/data-structure/2023-06-20-\354\212\244\355\203\235\354\235\230-\352\270\260\354\264\210\354\231\200-\352\263\240\354\240\225-\355\201\254\352\270\260-\354\212\244\355\203\235-\352\265\254\355\230\204.md" b/_posts/data-structure/2023-06-20-basics-of-stack.md similarity index 98% rename from "_posts/data-structure/2023-06-20-\354\212\244\355\203\235\354\235\230-\352\270\260\354\264\210\354\231\200-\352\263\240\354\240\225-\355\201\254\352\270\260-\354\212\244\355\203\235-\352\265\254\355\230\204.md" rename to _posts/data-structure/2023-06-20-basics-of-stack.md index 61d0240..4173081 100644 --- "a/_posts/data-structure/2023-06-20-\354\212\244\355\203\235\354\235\230-\352\270\260\354\264\210\354\231\200-\352\263\240\354\240\225-\355\201\254\352\270\260-\354\212\244\355\203\235-\352\265\254\355\230\204.md" +++ b/_posts/data-structure/2023-06-20-basics-of-stack.md @@ -6,9 +6,8 @@ categories: tags: - c - data structure -img_path: "/assets/img/posts/data-structure/2023-06-20-스택의-기초와-고정-크기-스택/" +img_path: "/assets/img/posts/data-structure/2023-06-20-basic-stack/" --- -> 다음 포스트 : [[스택] 동적 크기 스택]({% post_url /data-structure/2023-06-26-동적-크기-스택 %}) ## 📚 스택이란? ![Stack of Books](stack-of-books.png){: w="400" h="400"} @@ -46,7 +45,7 @@ _스택의 구조_ ## 💡 C언어에서 스택의 구현 방법 - 배열을 사용한 고정 크기 스택 (현재 포스트) -- [`realloc()` 함수를 통해 배열의 크기를 동적으로 변형하여 쓰는 스택]({% post_url /data-structure/2023-06-26-동적-크기-스택 %}) +- [`realloc()` 함수를 통해 배열의 크기를 동적으로 변형하여 쓰는 스택]({% post_url /data-structure/2023-06-26-dynamic-stack %}) - 연결리스트를 사용해 크기를 신경쓰지 않아도 되는 스택 (작성 예정) C언어에서 스택을 구현할 수 있는 방법에는 몇가지가 있다. 이 글에서는 첫번째 방법, 고정 크기 스택 구현방법에 대해 알아본다. diff --git "a/_posts/data-structure/2023-06-26-\353\217\231\354\240\201-\355\201\254\352\270\260-\354\212\244\355\203\235.md" b/_posts/data-structure/2023-06-26-dynamic-stack.md similarity index 95% rename from "_posts/data-structure/2023-06-26-\353\217\231\354\240\201-\355\201\254\352\270\260-\354\212\244\355\203\235.md" rename to _posts/data-structure/2023-06-26-dynamic-stack.md index 08491f3..8a08b52 100644 --- "a/_posts/data-structure/2023-06-26-\353\217\231\354\240\201-\355\201\254\352\270\260-\354\212\244\355\203\235.md" +++ b/_posts/data-structure/2023-06-26-dynamic-stack.md @@ -6,10 +6,8 @@ categories: tags: - c - data structure -img_path: "/assets/img/posts/data-structure/2023-06-26-동적-크기-스택/" +img_path: "/assets/img/posts/data-structure/2023-06-26-dynamic-stack/" --- -> - 이전 포스트 : [[스택] 스택의 기초와 고정 크기 스택]({% post_url /data-structure/2023-06-20-스택의-기초와-고정-크기-스택-구현 %}) -> - 다음 포스트 : [[스택] 스택의 응용 - 후위표기식]({% post_url /data-structure/2023-07-05-스택의-응용-후위표기식 %}) ## 🔎 동적 크기 스택? 지난 포스트에서는 고정된 크기의 배열을 사용하는 스택 자료구조를 구현했다. 배열의 크기가 고정되어 있는 만큼 불편함도 따른다. 이번 포스트에서는 `` 헤더 내의 `malloc()`, `realloc()` 함수를 활용하여 배열의 크기를 조정하면서 사용하는 동적 크기 스택에 대해 알아본다. diff --git "a/_posts/data-structure/2023-07-05-\354\212\244\355\203\235\354\235\230-\354\235\221\354\232\251-\355\233\204\354\234\204\355\221\234\352\270\260\354\213\235.md" b/_posts/data-structure/2023-07-05-stack-and-postfix.md similarity index 96% rename from "_posts/data-structure/2023-07-05-\354\212\244\355\203\235\354\235\230-\354\235\221\354\232\251-\355\233\204\354\234\204\355\221\234\352\270\260\354\213\235.md" rename to _posts/data-structure/2023-07-05-stack-and-postfix.md index fb26c6c..bc193d4 100644 --- "a/_posts/data-structure/2023-07-05-\354\212\244\355\203\235\354\235\230-\354\235\221\354\232\251-\355\233\204\354\234\204\355\221\234\352\270\260\354\213\235.md" +++ b/_posts/data-structure/2023-07-05-stack-and-postfix.md @@ -6,12 +6,9 @@ categories: tags: - c - data structure -img_path: "/assets/img/posts/data-structure/2023-07-05-스택의-응용-후위표기식/" +img_path: "/assets/img/posts/data-structure/2023-07-05-stack-and-postfix/" --- -> - 이전 포스트 : [[스택] 동적 크기 스택]({% post_url /data-structure/2023-06-26-동적-크기-스택 %}) -> - 다음 포스트 : [[스택] 큐의 기초와 선형 큐 구현]({% post_url /data-structure/2023-07-12-큐의-기초와-선형-큐-구현 %}) - ## 🔎 후위표기식? ![Infix vs Postfix](postfix01.png){: w="600" h="70"} _중위표기법(좌)과 후위표기법(우)_ diff --git "a/_posts/data-structure/2023-07-12-\355\201\220\354\235\230-\352\270\260\354\264\210\354\231\200-\354\204\240\355\230\225-\355\201\220-\352\265\254\355\230\204.md" b/_posts/data-structure/2023-07-12-basics-of-queue-and-linear-queue.md similarity index 95% rename from "_posts/data-structure/2023-07-12-\355\201\220\354\235\230-\352\270\260\354\264\210\354\231\200-\354\204\240\355\230\225-\355\201\220-\352\265\254\355\230\204.md" rename to _posts/data-structure/2023-07-12-basics-of-queue-and-linear-queue.md index 8c6fbbf..8f30c33 100644 --- "a/_posts/data-structure/2023-07-12-\355\201\220\354\235\230-\352\270\260\354\264\210\354\231\200-\354\204\240\355\230\225-\355\201\220-\352\265\254\355\230\204.md" +++ b/_posts/data-structure/2023-07-12-basics-of-queue-and-linear-queue.md @@ -7,11 +7,8 @@ categories: tags: - c - data structure -img_path: "/assets/img/posts/data-structure/2023-07-12-큐의-기초와-선형-큐-구현/" +img_path: "/assets/img/posts/data-structure/2023-07-12-basics-of-queue-and-linear-queue/" --- -> - 이전 포스트 : [[스택] 스택의 응용 - 후위표기식"크기 스택]({% post_url /data-structure/2023-07-05-스택의-응용-후위표기식 %}) -> - 다음 포스트 : [[큐] 원형 큐 구현]({%post_url /data-structure/2023-07-19-원형-큐-구현 %}) - ![Queue image](queue1.jpeg){: w="500" h=700"} _사람들이 줄을 서있는 사진_ diff --git "a/_posts/data-structure/2023-07-19-\354\233\220\355\230\225-\355\201\220-\352\265\254\355\230\204.md" b/_posts/data-structure/2023-07-19-circular-queue.md similarity index 94% rename from "_posts/data-structure/2023-07-19-\354\233\220\355\230\225-\355\201\220-\352\265\254\355\230\204.md" rename to _posts/data-structure/2023-07-19-circular-queue.md index 7d5813b..3495a26 100644 --- "a/_posts/data-structure/2023-07-19-\354\233\220\355\230\225-\355\201\220-\352\265\254\355\230\204.md" +++ b/_posts/data-structure/2023-07-19-circular-queue.md @@ -7,12 +7,9 @@ categories: tags: - c - data structure -img_path: "/assets/img/posts/data-structure/2023-07-19-원형-큐-구현/" +img_path: "/assets/img/posts/data-structure/2023-07-19-circular-queue/" --- -> - 이전 포스트 : [[큐] 큐의 기초와 선형 큐 구현]({% post_url /data-structure/2023-07-12-큐의-기초와-선형-큐-구현 %}) -> - 다음 포스트 : [[큐] 덱 (Deque - Double Ended Queue) 구현]({% post_url /data-structure/2023-07-25-덱-구현 %}) - > 그림의 글씨가 이쁘지 않은 점 양해 부탁드립니다. 아이패드로 글씨쓰면 뭔가 안 이쁨.. {: .prompt-tip} diff --git "a/_posts/data-structure/2023-07-25-\353\215\261-\352\265\254\355\230\204.md" b/_posts/data-structure/2023-07-25-deque.md similarity index 92% rename from "_posts/data-structure/2023-07-25-\353\215\261-\352\265\254\355\230\204.md" rename to _posts/data-structure/2023-07-25-deque.md index 1ef15ae..13f75f4 100644 --- "a/_posts/data-structure/2023-07-25-\353\215\261-\352\265\254\355\230\204.md" +++ b/_posts/data-structure/2023-07-25-deque.md @@ -7,13 +7,9 @@ categories: tags: - c - data structure -img_path: "/assets/img/posts/data-structure/2023-07-25-덱-구현/" +img_path: "/assets/img/posts/data-structure/2023-07-25-deque/" --- -> - 이전 포스트 : [[큐] 원형 큐 구현]({% post_url /data-structure/2023-07-19-원형-큐-구현 %}) -> - 다음 포스트 : [[리스트] 리스트의 기초와 단순 연결 리스트]({% post_url /data-structure/2023-08-01-리스트의-기초와-단순-연결-리스트 %}) - - ## 🔍 덱이란? ![Deque1](deque1.png){: w="854", h="480"} diff --git "a/_posts/data-structure/2023-08-01-\353\246\254\354\212\244\355\212\270\354\235\230-\352\270\260\354\264\210\354\231\200-\353\213\250\354\210\234-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270.md" b/_posts/data-structure/2023-08-01-basic-of-list-and-simply-linked-list.md similarity index 97% rename from "_posts/data-structure/2023-08-01-\353\246\254\354\212\244\355\212\270\354\235\230-\352\270\260\354\264\210\354\231\200-\353\213\250\354\210\234-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270.md" rename to _posts/data-structure/2023-08-01-basic-of-list-and-simply-linked-list.md index cabe388..35ad97c 100644 --- "a/_posts/data-structure/2023-08-01-\353\246\254\354\212\244\355\212\270\354\235\230-\352\270\260\354\264\210\354\231\200-\353\213\250\354\210\234-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270.md" +++ b/_posts/data-structure/2023-08-01-basic-of-list-and-simply-linked-list.md @@ -7,12 +7,9 @@ categories: tags: - c - data structure -img_path: "/assets/img/posts/data-structure/2023-08-01-리스트의-기초와-단순-연결-리스트/" +img_path: "/assets/img/posts/data-structure/2023-08-01-basic-of-list-and-simply-linked-list/" --- -> - 이전 포스트 : [[큐] 덱 (Deque - Double Ended Queue) 구현]({% post_url /data-structure/2023-07-25-덱-구현 %}) -> - 다음 포스트 : [[리스트] 원형 연결 리스트의 구현]({% post_url /data-structure/2023-08-08-원형-연결-리스트의-구현 %}) - ![to do](todo.gif){: w="216", h="480"} _iOS의 미리알림 앱_ diff --git "a/_posts/data-structure/2023-08-08-\354\233\220\355\230\225-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204.md" b/_posts/data-structure/2023-08-08-circular-linked-list.md similarity index 92% rename from "_posts/data-structure/2023-08-08-\354\233\220\355\230\225-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204.md" rename to _posts/data-structure/2023-08-08-circular-linked-list.md index 8c093a3..a5be707 100644 --- "a/_posts/data-structure/2023-08-08-\354\233\220\355\230\225-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204.md" +++ b/_posts/data-structure/2023-08-08-circular-linked-list.md @@ -7,17 +7,14 @@ categories: tags: - c - data structure -img_path: "/assets/img/posts/data-structure/2023-08-08-원형-연결-리스트의-구현/" +img_path: "/assets/img/posts/data-structure/2023-08-08-circular-linked-list/" --- -> - 이전 포스트 : [[리스트] 리스트의 기초와 단순 연결 리스트]({% post_url /data-structure/2023-08-01-리스트의-기초와-단순-연결-리스트 %}) -> - 다음 포스트 : [[리스트] 이중 연결 리스트의 구현]({% post_url /data-structure/2023-08-15-이중-연결-리스트의-구현 %}) - ## 🔍 원형 연결리스트(Circular linkedlist)란? ![circular-list](clist1.png){: w="949"} _원형 연결리스트_ -지난 시간에 알아본 단순 연결리스트는 리스트에 끝에 도달하면 뒤로 되돌아갈 수 없다는 단점을 가지고 있다. 이를 개선하여, 리스트에 끝을 다시 리스트의 맨 앞과 연결하는 형태로 만든 리스트를 **원형 연결리스트**라고 한다. 잘 생각해보면 [원형 큐]({% post_url /data-structure/2023-07-19-원형-큐-구현 %})와 모습이 비슷하다. +지난 시간에 알아본 단순 연결리스트는 리스트에 끝에 도달하면 뒤로 되돌아갈 수 없다는 단점을 가지고 있다. 이를 개선하여, 리스트에 끝을 다시 리스트의 맨 앞과 연결하는 형태로 만든 리스트를 **원형 연결리스트**라고 한다. 잘 생각해보면 [원형 큐]({% post_url /data-structure/2023-07-19-circular-queue %})와 모습이 비슷하다. 어떤 데이터들을 계속 순회하며 써야할 때가 있다. 예를 들면 온라인 보드게임이 있다고 하자. 플레이어 1 ~ 4 까지의 차례가 끝나면, 다시 플레이어 1의 차례가 되어야한다. 이를 원형 연결리스트를 사용한 큐로 관리하면 편할 것이다. 플레이어가 언제 떠나거나 새로 들어올 지 모르기때문에, 배열을 사용한 큐보단 자유자재로 노드를 삽입하고 제거하는 원형 연결리스트로 구현한 큐를 쓰는 것이다. diff --git "a/_posts/data-structure/2023-08-15-\354\235\264\354\244\221-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204.md" b/_posts/data-structure/2023-08-15-doubly-linked-list.md similarity index 88% rename from "_posts/data-structure/2023-08-15-\354\235\264\354\244\221-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204.md" rename to _posts/data-structure/2023-08-15-doubly-linked-list.md index 67a2f4c..e57a145 100644 --- "a/_posts/data-structure/2023-08-15-\354\235\264\354\244\221-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204.md" +++ b/_posts/data-structure/2023-08-15-doubly-linked-list.md @@ -7,18 +7,15 @@ categories: tags: - c - data structure -img_path: "/assets/img/posts/data-structure/2023-08-15-이중-연결-리스트의-구현/" +img_path: "/assets/img/posts/data-structure/2023-08-15-doubly-linked-list/" --- -> - 이전 포스트 : [[리스트] 원형 연결 리스트의 구현]({% post_url /data-structure/2023-08-08-원형-연결-리스트의-구현 %}) -> - 다음 포스트 : [[리스트] 연결리스트 응용 - 스택과 큐]({% post_url /data-structure/2023-08-22-연결리스트-응용---스택과-큐 %}) - ## 🔍 이중 연결리스트(Doubly Linkedlist)란? ![dlist1](dlist1.png){: w="1061} _이중 연결리스트의 모습_ -이중 연결리스트는 말 그대로 노드 간의 연결이 이중으로 되어있는 리스트 자료구조이다. 노드에는 다음 노드의 정보뿐만 아니라 이전 노드를 가르키고 있는 포인터도 가지고있다. 여태까지 연결리스트의 2가지 버젼 ([단순 연결리스트]({% post_url /data-structure/2023-08-01-리스트의-기초와-단순-연결-리스트 %}), [원형 연결리스트]({% post_url /data-structure/2023-08-08-원형-연결-리스트의-구현 %}))에 대해 알아보았으니 이번 이중 연결리스트의 구현은 비교적 간단하게 느껴질 것이다. 여기서는 이중 연결리스트와 원형 연결리스트를 합친 버젼에 대해 공부한다. +이중 연결리스트는 말 그대로 노드 간의 연결이 이중으로 되어있는 리스트 자료구조이다. 노드에는 다음 노드의 정보뿐만 아니라 이전 노드를 가르키고 있는 포인터도 가지고있다. 여태까지 연결리스트의 2가지 버젼 ([단순 연결리스트]({% post_url /data-structure/2023-08-01-basic-of-list-and-simply-linked-list %}), [원형 연결리스트]({% post_url /data-structure/2023-08-08-circular-linked-list %}))에 대해 알아보았으니 이번 이중 연결리스트의 구현은 비교적 간단하게 느껴질 것이다. 여기서는 이중 연결리스트와 원형 연결리스트를 합친 버젼에 대해 공부한다. 이중 연결리스트는 양방향으로 탐색할 수 있다는 장점이 있지만, 이전 노드와 다음 노드 두가지 연결을 주의해야하는 단점이 있다. diff --git "a/_posts/data-structure/2023-08-22-\354\227\260\352\262\260\353\246\254\354\212\244\355\212\270-\354\235\221\354\232\251---\354\212\244\355\203\235\352\263\274-\355\201\220.md" b/_posts/data-structure/2023-08-22-stack-and-queue-made-with-linked-list.md similarity index 94% rename from "_posts/data-structure/2023-08-22-\354\227\260\352\262\260\353\246\254\354\212\244\355\212\270-\354\235\221\354\232\251---\354\212\244\355\203\235\352\263\274-\355\201\220.md" rename to _posts/data-structure/2023-08-22-stack-and-queue-made-with-linked-list.md index 38d6d02..8d43d61 100644 --- "a/_posts/data-structure/2023-08-22-\354\227\260\352\262\260\353\246\254\354\212\244\355\212\270-\354\235\221\354\232\251---\354\212\244\355\203\235\352\263\274-\355\201\220.md" +++ b/_posts/data-structure/2023-08-22-stack-and-queue-made-with-linked-list.md @@ -7,10 +7,8 @@ categories: tags: - c - data structure -img_path: "/assets/img/posts/data-structure/2023-08-22-연결리스트-응용---스택과-큐/" +img_path: "/assets/img/posts/data-structure/2023-08-22-stack-and-queue-made-with-linked-list/" --- -> - 이전 포스트 : [[리스트] 이중 연결 리스트의 구현]({% post_url /data-structure/2023-08-15-이중-연결-리스트의-구현 %}) -> - 다음 포스트 : [[트리] 트리의 기초]({% post_url /data-structure/2023-09-03-트리-트리의-기초 %}) ## 🎯 연결리스트로 스택과 큐 만들기 이번 시간에는 여태까지 배운 연결리스트를 통해 스택과 큐 자료구조를 만들어 볼 것이다. 기존 스택과 큐는 배열을 사용하여 크기로부터 자유롭지 못했다. 최대 용량을 넘어서면 용량을 늘려 배열을 다시 동적할당 받는 방법을 사용하긴했지만 어찌됐든 크기를 처음에 지정하긴 해야한다. diff --git "a/_posts/data-structure/2023-09-03-\355\212\270\353\246\254-\355\212\270\353\246\254\354\235\230-\352\270\260\354\264\210.md" b/_posts/data-structure/2023-09-03-basics-of-tree.md similarity index 94% rename from "_posts/data-structure/2023-09-03-\355\212\270\353\246\254-\355\212\270\353\246\254\354\235\230-\352\270\260\354\264\210.md" rename to _posts/data-structure/2023-09-03-basics-of-tree.md index 5a2e467..61e3dcd 100644 --- "a/_posts/data-structure/2023-09-03-\355\212\270\353\246\254-\355\212\270\353\246\254\354\235\230-\352\270\260\354\264\210.md" +++ b/_posts/data-structure/2023-09-03-basics-of-tree.md @@ -8,12 +8,9 @@ categories: tags: - c - data structure -img_path: "/assets/img/posts/data-structure/2023-09-03-트리-트리의-기초/" +img_path: "/assets/img/posts/data-structure/2023-09-03-basics-of-tree/" --- -> - 이전 포스트 : [[리스트] 연결리스트 응용 - 스택과 큐]({% post_url /data-structure/2023-08-22-연결리스트-응용---스택과-큐 %}) -> - 다음 포스트 : - ## 🔍 트리(Tree) 자료구조란? ![트리](tree.png){: h="1000"} _뒤집은 나무와 닮은 트리 자료구조_ diff --git a/_tabs/portfolio.md b/_tabs/portfolio.md index b2e37b9..e048c25 100644 --- a/_tabs/portfolio.md +++ b/_tabs/portfolio.md @@ -27,7 +27,7 @@ order: 4 - Studied `Computer Architecture, Data structure, Understanding of Programming Languages, C++, Linear Algebra with numpy, sympy (python), Calculus 1` ### Summmer Break 🍹 -- [Personal blog with Github Pages & Jekyll & Chirpy theme.]({% post_url /2023-06-19-Jekyll과-Chirpy-테마를-통한-Github-Pages-시작 %}){: target="_blank"} *This blog you're watching! 👀* +- [Personal blog with Github Pages & Jekyll & Chirpy theme.]({% post_url /2023-06-19-github-pages-with-jekyll-chirpy-theme %}){: target="_blank"} *This blog you're watching! 👀* - Studied basics of game programming using C++ and SDL2 [(Game Programming in C++: Creating 3D Games (Game Design) by Sanjay Madhav)](https://www.amazon.com/Game-Programming-Creating-Games-Design/dp/0134597206){: target="_blank"} - Personalized `.dotfiles` of `git, neovim, vim` using `stow` for Linux/Unix systems : [Github](https://github.com/nyhryan/ATAI-Dotfiles){: target="_blank"} - Basic tetris game with `C++ & SDL2` : [Github](https://github.com/nyhryan/Tetris-SDL2){: target="_blank"} diff --git "a/assets/img/posts/2023-06-19-Jekyll\352\263\274-Chirpy-\355\205\214\353\247\210\353\245\274-\355\206\265\355\225\234-Github-Pages-\354\213\234\354\236\221/chirpy.png" b/assets/img/posts/2023-06-19-github-pages-with-jekyll-chirpy-theme/chirpy.png similarity index 100% rename from "assets/img/posts/2023-06-19-Jekyll\352\263\274-Chirpy-\355\205\214\353\247\210\353\245\274-\355\206\265\355\225\234-Github-Pages-\354\213\234\354\236\221/chirpy.png" rename to assets/img/posts/2023-06-19-github-pages-with-jekyll-chirpy-theme/chirpy.png diff --git "a/assets/img/posts/2023-06-19-Jekyll\352\263\274-Chirpy-\355\205\214\353\247\210\353\245\274-\355\206\265\355\225\234-Github-Pages-\354\213\234\354\236\221/font1.png" b/assets/img/posts/2023-06-19-github-pages-with-jekyll-chirpy-theme/font1.png similarity index 100% rename from "assets/img/posts/2023-06-19-Jekyll\352\263\274-Chirpy-\355\205\214\353\247\210\353\245\274-\355\206\265\355\225\234-Github-Pages-\354\213\234\354\236\221/font1.png" rename to assets/img/posts/2023-06-19-github-pages-with-jekyll-chirpy-theme/font1.png diff --git "a/assets/img/posts/2023-06-19-Jekyll\352\263\274-Chirpy-\355\205\214\353\247\210\353\245\274-\355\206\265\355\225\234-Github-Pages-\354\213\234\354\236\221/font2.png" b/assets/img/posts/2023-06-19-github-pages-with-jekyll-chirpy-theme/font2.png similarity index 100% rename from "assets/img/posts/2023-06-19-Jekyll\352\263\274-Chirpy-\355\205\214\353\247\210\353\245\274-\355\206\265\355\225\234-Github-Pages-\354\213\234\354\236\221/font2.png" rename to assets/img/posts/2023-06-19-github-pages-with-jekyll-chirpy-theme/font2.png diff --git "a/assets/img/posts/data-structure/2023-06-20-\354\212\244\355\203\235\354\235\230-\352\270\260\354\264\210\354\231\200-\352\263\240\354\240\225-\355\201\254\352\270\260-\354\212\244\355\203\235/ex-1.png" b/assets/img/posts/data-structure/2023-06-20-basic-stack/ex-1.png similarity index 100% rename from "assets/img/posts/data-structure/2023-06-20-\354\212\244\355\203\235\354\235\230-\352\270\260\354\264\210\354\231\200-\352\263\240\354\240\225-\355\201\254\352\270\260-\354\212\244\355\203\235/ex-1.png" rename to assets/img/posts/data-structure/2023-06-20-basic-stack/ex-1.png diff --git "a/assets/img/posts/data-structure/2023-06-20-\354\212\244\355\203\235\354\235\230-\352\270\260\354\264\210\354\231\200-\352\263\240\354\240\225-\355\201\254\352\270\260-\354\212\244\355\203\235/ex-2.png" b/assets/img/posts/data-structure/2023-06-20-basic-stack/ex-2.png similarity index 100% rename from "assets/img/posts/data-structure/2023-06-20-\354\212\244\355\203\235\354\235\230-\352\270\260\354\264\210\354\231\200-\352\263\240\354\240\225-\355\201\254\352\270\260-\354\212\244\355\203\235/ex-2.png" rename to assets/img/posts/data-structure/2023-06-20-basic-stack/ex-2.png diff --git "a/assets/img/posts/data-structure/2023-06-20-\354\212\244\355\203\235\354\235\230-\352\270\260\354\264\210\354\231\200-\352\263\240\354\240\225-\355\201\254\352\270\260-\354\212\244\355\203\235/ex-3.gif" b/assets/img/posts/data-structure/2023-06-20-basic-stack/ex-3.gif similarity index 100% rename from "assets/img/posts/data-structure/2023-06-20-\354\212\244\355\203\235\354\235\230-\352\270\260\354\264\210\354\231\200-\352\263\240\354\240\225-\355\201\254\352\270\260-\354\212\244\355\203\235/ex-3.gif" rename to assets/img/posts/data-structure/2023-06-20-basic-stack/ex-3.gif diff --git "a/assets/img/posts/data-structure/2023-06-20-\354\212\244\355\203\235\354\235\230-\352\270\260\354\264\210\354\231\200-\352\263\240\354\240\225-\355\201\254\352\270\260-\354\212\244\355\203\235/ex-4.gif" b/assets/img/posts/data-structure/2023-06-20-basic-stack/ex-4.gif similarity index 100% rename from "assets/img/posts/data-structure/2023-06-20-\354\212\244\355\203\235\354\235\230-\352\270\260\354\264\210\354\231\200-\352\263\240\354\240\225-\355\201\254\352\270\260-\354\212\244\355\203\235/ex-4.gif" rename to assets/img/posts/data-structure/2023-06-20-basic-stack/ex-4.gif diff --git "a/assets/img/posts/data-structure/2023-06-20-\354\212\244\355\203\235\354\235\230-\352\270\260\354\264\210\354\231\200-\352\263\240\354\240\225-\355\201\254\352\270\260-\354\212\244\355\203\235/stack-of-books.png" b/assets/img/posts/data-structure/2023-06-20-basic-stack/stack-of-books.png similarity index 100% rename from "assets/img/posts/data-structure/2023-06-20-\354\212\244\355\203\235\354\235\230-\352\270\260\354\264\210\354\231\200-\352\263\240\354\240\225-\355\201\254\352\270\260-\354\212\244\355\203\235/stack-of-books.png" rename to assets/img/posts/data-structure/2023-06-20-basic-stack/stack-of-books.png diff --git "a/assets/img/posts/data-structure/2023-06-26-\353\217\231\354\240\201-\355\201\254\352\270\260-\354\212\244\355\203\235/ex1.png" b/assets/img/posts/data-structure/2023-06-26-dynamic-stack/ex1.png similarity index 100% rename from "assets/img/posts/data-structure/2023-06-26-\353\217\231\354\240\201-\355\201\254\352\270\260-\354\212\244\355\203\235/ex1.png" rename to assets/img/posts/data-structure/2023-06-26-dynamic-stack/ex1.png diff --git "a/assets/img/posts/data-structure/2023-07-05-\354\212\244\355\203\235\354\235\230-\354\235\221\354\232\251-\355\233\204\354\234\204\355\221\234\352\270\260\354\213\235/output.png" b/assets/img/posts/data-structure/2023-07-05-stack-and-postfix/output.png similarity index 100% rename from "assets/img/posts/data-structure/2023-07-05-\354\212\244\355\203\235\354\235\230-\354\235\221\354\232\251-\355\233\204\354\234\204\355\221\234\352\270\260\354\213\235/output.png" rename to assets/img/posts/data-structure/2023-07-05-stack-and-postfix/output.png diff --git "a/assets/img/posts/data-structure/2023-07-05-\354\212\244\355\203\235\354\235\230-\354\235\221\354\232\251-\355\233\204\354\234\204\355\221\234\352\270\260\354\213\235/output2.png" b/assets/img/posts/data-structure/2023-07-05-stack-and-postfix/output2.png similarity index 100% rename from "assets/img/posts/data-structure/2023-07-05-\354\212\244\355\203\235\354\235\230-\354\235\221\354\232\251-\355\233\204\354\234\204\355\221\234\352\270\260\354\213\235/output2.png" rename to assets/img/posts/data-structure/2023-07-05-stack-and-postfix/output2.png diff --git "a/assets/img/posts/data-structure/2023-07-05-\354\212\244\355\203\235\354\235\230-\354\235\221\354\232\251-\355\233\204\354\234\204\355\221\234\352\270\260\354\213\235/postfix01.png" b/assets/img/posts/data-structure/2023-07-05-stack-and-postfix/postfix01.png similarity index 100% rename from "assets/img/posts/data-structure/2023-07-05-\354\212\244\355\203\235\354\235\230-\354\235\221\354\232\251-\355\233\204\354\234\204\355\221\234\352\270\260\354\213\235/postfix01.png" rename to assets/img/posts/data-structure/2023-07-05-stack-and-postfix/postfix01.png diff --git "a/assets/img/posts/data-structure/2023-07-05-\354\212\244\355\203\235\354\235\230-\354\235\221\354\232\251-\355\233\204\354\234\204\355\221\234\352\270\260\354\213\235/postfix02.png" b/assets/img/posts/data-structure/2023-07-05-stack-and-postfix/postfix02.png similarity index 100% rename from "assets/img/posts/data-structure/2023-07-05-\354\212\244\355\203\235\354\235\230-\354\235\221\354\232\251-\355\233\204\354\234\204\355\221\234\352\270\260\354\213\235/postfix02.png" rename to assets/img/posts/data-structure/2023-07-05-stack-and-postfix/postfix02.png diff --git "a/assets/img/posts/data-structure/2023-07-12-\355\201\220\354\235\230-\352\270\260\354\264\210\354\231\200-\354\204\240\355\230\225-\355\201\220-\352\265\254\355\230\204/anim_queue.gif" b/assets/img/posts/data-structure/2023-07-12-basics-of-queue-and-linear-queue/anim_queue.gif similarity index 100% rename from "assets/img/posts/data-structure/2023-07-12-\355\201\220\354\235\230-\352\270\260\354\264\210\354\231\200-\354\204\240\355\230\225-\355\201\220-\352\265\254\355\230\204/anim_queue.gif" rename to assets/img/posts/data-structure/2023-07-12-basics-of-queue-and-linear-queue/anim_queue.gif diff --git "a/assets/img/posts/data-structure/2023-07-12-\355\201\220\354\235\230-\352\270\260\354\264\210\354\231\200-\354\204\240\355\230\225-\355\201\220-\352\265\254\355\230\204/anim_queue2.gif" b/assets/img/posts/data-structure/2023-07-12-basics-of-queue-and-linear-queue/anim_queue2.gif similarity index 100% rename from "assets/img/posts/data-structure/2023-07-12-\355\201\220\354\235\230-\352\270\260\354\264\210\354\231\200-\354\204\240\355\230\225-\355\201\220-\352\265\254\355\230\204/anim_queue2.gif" rename to assets/img/posts/data-structure/2023-07-12-basics-of-queue-and-linear-queue/anim_queue2.gif diff --git "a/assets/img/posts/data-structure/2023-07-12-\355\201\220\354\235\230-\352\270\260\354\264\210\354\231\200-\354\204\240\355\230\225-\355\201\220-\352\265\254\355\230\204/output.png" b/assets/img/posts/data-structure/2023-07-12-basics-of-queue-and-linear-queue/output.png similarity index 100% rename from "assets/img/posts/data-structure/2023-07-12-\355\201\220\354\235\230-\352\270\260\354\264\210\354\231\200-\354\204\240\355\230\225-\355\201\220-\352\265\254\355\230\204/output.png" rename to assets/img/posts/data-structure/2023-07-12-basics-of-queue-and-linear-queue/output.png diff --git "a/assets/img/posts/data-structure/2023-07-12-\355\201\220\354\235\230-\352\270\260\354\264\210\354\231\200-\354\204\240\355\230\225-\355\201\220-\352\265\254\355\230\204/queue1.jpeg" b/assets/img/posts/data-structure/2023-07-12-basics-of-queue-and-linear-queue/queue1.jpeg similarity index 100% rename from "assets/img/posts/data-structure/2023-07-12-\355\201\220\354\235\230-\352\270\260\354\264\210\354\231\200-\354\204\240\355\230\225-\355\201\220-\352\265\254\355\230\204/queue1.jpeg" rename to assets/img/posts/data-structure/2023-07-12-basics-of-queue-and-linear-queue/queue1.jpeg diff --git "a/assets/img/posts/data-structure/2023-07-19-\354\233\220\355\230\225-\355\201\220-\352\265\254\355\230\204/circular_q.jpg" b/assets/img/posts/data-structure/2023-07-19-circular-queue/circular_q.jpg similarity index 100% rename from "assets/img/posts/data-structure/2023-07-19-\354\233\220\355\230\225-\355\201\220-\352\265\254\355\230\204/circular_q.jpg" rename to assets/img/posts/data-structure/2023-07-19-circular-queue/circular_q.jpg diff --git "a/assets/img/posts/data-structure/2023-07-19-\354\233\220\355\230\225-\355\201\220-\352\265\254\355\230\204/circular_q2.jpg" b/assets/img/posts/data-structure/2023-07-19-circular-queue/circular_q2.jpg similarity index 100% rename from "assets/img/posts/data-structure/2023-07-19-\354\233\220\355\230\225-\355\201\220-\352\265\254\355\230\204/circular_q2.jpg" rename to assets/img/posts/data-structure/2023-07-19-circular-queue/circular_q2.jpg diff --git "a/assets/img/posts/data-structure/2023-07-19-\354\233\220\355\230\225-\355\201\220-\352\265\254\355\230\204/isFull.jpg" b/assets/img/posts/data-structure/2023-07-19-circular-queue/isFull.jpg similarity index 100% rename from "assets/img/posts/data-structure/2023-07-19-\354\233\220\355\230\225-\355\201\220-\352\265\254\355\230\204/isFull.jpg" rename to assets/img/posts/data-structure/2023-07-19-circular-queue/isFull.jpg diff --git "a/assets/img/posts/data-structure/2023-07-19-\354\233\220\355\230\225-\355\201\220-\352\265\254\355\230\204/linear_q.jpg" b/assets/img/posts/data-structure/2023-07-19-circular-queue/linear_q.jpg similarity index 100% rename from "assets/img/posts/data-structure/2023-07-19-\354\233\220\355\230\225-\355\201\220-\352\265\254\355\230\204/linear_q.jpg" rename to assets/img/posts/data-structure/2023-07-19-circular-queue/linear_q.jpg diff --git "a/assets/img/posts/data-structure/2023-07-19-\354\233\220\355\230\225-\355\201\220-\352\265\254\355\230\204/result.png" b/assets/img/posts/data-structure/2023-07-19-circular-queue/result.png similarity index 100% rename from "assets/img/posts/data-structure/2023-07-19-\354\233\220\355\230\225-\355\201\220-\352\265\254\355\230\204/result.png" rename to assets/img/posts/data-structure/2023-07-19-circular-queue/result.png diff --git "a/assets/img/posts/data-structure/2023-07-25-\353\215\261-\352\265\254\355\230\204/deque1.png" b/assets/img/posts/data-structure/2023-07-25-deque/deque1.png similarity index 100% rename from "assets/img/posts/data-structure/2023-07-25-\353\215\261-\352\265\254\355\230\204/deque1.png" rename to assets/img/posts/data-structure/2023-07-25-deque/deque1.png diff --git "a/assets/img/posts/data-structure/2023-07-25-\353\215\261-\352\265\254\355\230\204/deque2.png" b/assets/img/posts/data-structure/2023-07-25-deque/deque2.png similarity index 100% rename from "assets/img/posts/data-structure/2023-07-25-\353\215\261-\352\265\254\355\230\204/deque2.png" rename to assets/img/posts/data-structure/2023-07-25-deque/deque2.png diff --git "a/assets/img/posts/data-structure/2023-07-25-\353\215\261-\352\265\254\355\230\204/deque3.png" b/assets/img/posts/data-structure/2023-07-25-deque/deque3.png similarity index 100% rename from "assets/img/posts/data-structure/2023-07-25-\353\215\261-\352\265\254\355\230\204/deque3.png" rename to assets/img/posts/data-structure/2023-07-25-deque/deque3.png diff --git "a/assets/img/posts/data-structure/2023-08-01-\353\246\254\354\212\244\355\212\270\354\235\230-\352\270\260\354\264\210\354\231\200-\353\213\250\354\210\234-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270/insert.gif" b/assets/img/posts/data-structure/2023-08-01-basic-of-list-and-simply-linked-list/insert.gif similarity index 100% rename from "assets/img/posts/data-structure/2023-08-01-\353\246\254\354\212\244\355\212\270\354\235\230-\352\270\260\354\264\210\354\231\200-\353\213\250\354\210\234-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270/insert.gif" rename to assets/img/posts/data-structure/2023-08-01-basic-of-list-and-simply-linked-list/insert.gif diff --git "a/assets/img/posts/data-structure/2023-08-01-\353\246\254\354\212\244\355\212\270\354\235\230-\352\270\260\354\264\210\354\231\200-\353\213\250\354\210\234-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270/linked1.png" b/assets/img/posts/data-structure/2023-08-01-basic-of-list-and-simply-linked-list/linked1.png similarity index 100% rename from "assets/img/posts/data-structure/2023-08-01-\353\246\254\354\212\244\355\212\270\354\235\230-\352\270\260\354\264\210\354\231\200-\353\213\250\354\210\234-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270/linked1.png" rename to assets/img/posts/data-structure/2023-08-01-basic-of-list-and-simply-linked-list/linked1.png diff --git "a/assets/img/posts/data-structure/2023-08-01-\353\246\254\354\212\244\355\212\270\354\235\230-\352\270\260\354\264\210\354\231\200-\353\213\250\354\210\234-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270/remove.gif" b/assets/img/posts/data-structure/2023-08-01-basic-of-list-and-simply-linked-list/remove.gif similarity index 100% rename from "assets/img/posts/data-structure/2023-08-01-\353\246\254\354\212\244\355\212\270\354\235\230-\352\270\260\354\264\210\354\231\200-\353\213\250\354\210\234-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270/remove.gif" rename to assets/img/posts/data-structure/2023-08-01-basic-of-list-and-simply-linked-list/remove.gif diff --git "a/assets/img/posts/data-structure/2023-08-01-\353\246\254\354\212\244\355\212\270\354\235\230-\352\270\260\354\264\210\354\231\200-\353\213\250\354\210\234-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270/result.png" b/assets/img/posts/data-structure/2023-08-01-basic-of-list-and-simply-linked-list/result.png similarity index 100% rename from "assets/img/posts/data-structure/2023-08-01-\353\246\254\354\212\244\355\212\270\354\235\230-\352\270\260\354\264\210\354\231\200-\353\213\250\354\210\234-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270/result.png" rename to assets/img/posts/data-structure/2023-08-01-basic-of-list-and-simply-linked-list/result.png diff --git "a/assets/img/posts/data-structure/2023-08-01-\353\246\254\354\212\244\355\212\270\354\235\230-\352\270\260\354\264\210\354\231\200-\353\213\250\354\210\234-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270/todo.gif" b/assets/img/posts/data-structure/2023-08-01-basic-of-list-and-simply-linked-list/todo.gif similarity index 100% rename from "assets/img/posts/data-structure/2023-08-01-\353\246\254\354\212\244\355\212\270\354\235\230-\352\270\260\354\264\210\354\231\200-\353\213\250\354\210\234-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270/todo.gif" rename to assets/img/posts/data-structure/2023-08-01-basic-of-list-and-simply-linked-list/todo.gif diff --git "a/assets/img/posts/data-structure/2023-08-08-\354\233\220\355\230\225-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204/clist1.png" b/assets/img/posts/data-structure/2023-08-08-circular-linked-list/clist1.png similarity index 100% rename from "assets/img/posts/data-structure/2023-08-08-\354\233\220\355\230\225-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204/clist1.png" rename to assets/img/posts/data-structure/2023-08-08-circular-linked-list/clist1.png diff --git "a/assets/img/posts/data-structure/2023-08-08-\354\233\220\355\230\225-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204/insert.gif" b/assets/img/posts/data-structure/2023-08-08-circular-linked-list/insert.gif similarity index 100% rename from "assets/img/posts/data-structure/2023-08-08-\354\233\220\355\230\225-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204/insert.gif" rename to assets/img/posts/data-structure/2023-08-08-circular-linked-list/insert.gif diff --git "a/assets/img/posts/data-structure/2023-08-08-\354\233\220\355\230\225-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204/output.png" b/assets/img/posts/data-structure/2023-08-08-circular-linked-list/output.png similarity index 100% rename from "assets/img/posts/data-structure/2023-08-08-\354\233\220\355\230\225-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204/output.png" rename to assets/img/posts/data-structure/2023-08-08-circular-linked-list/output.png diff --git "a/assets/img/posts/data-structure/2023-08-08-\354\233\220\355\230\225-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204/remove1.gif" b/assets/img/posts/data-structure/2023-08-08-circular-linked-list/remove1.gif similarity index 100% rename from "assets/img/posts/data-structure/2023-08-08-\354\233\220\355\230\225-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204/remove1.gif" rename to assets/img/posts/data-structure/2023-08-08-circular-linked-list/remove1.gif diff --git "a/assets/img/posts/data-structure/2023-08-15-\354\235\264\354\244\221-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204/dlist-insert.gif" b/assets/img/posts/data-structure/2023-08-15-doubly-linked-list/dlist-insert.gif similarity index 100% rename from "assets/img/posts/data-structure/2023-08-15-\354\235\264\354\244\221-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204/dlist-insert.gif" rename to assets/img/posts/data-structure/2023-08-15-doubly-linked-list/dlist-insert.gif diff --git "a/assets/img/posts/data-structure/2023-08-15-\354\235\264\354\244\221-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204/dlist-insert2.gif" b/assets/img/posts/data-structure/2023-08-15-doubly-linked-list/dlist-insert2.gif similarity index 100% rename from "assets/img/posts/data-structure/2023-08-15-\354\235\264\354\244\221-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204/dlist-insert2.gif" rename to assets/img/posts/data-structure/2023-08-15-doubly-linked-list/dlist-insert2.gif diff --git "a/assets/img/posts/data-structure/2023-08-15-\354\235\264\354\244\221-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204/dlist-remove.gif" b/assets/img/posts/data-structure/2023-08-15-doubly-linked-list/dlist-remove.gif similarity index 100% rename from "assets/img/posts/data-structure/2023-08-15-\354\235\264\354\244\221-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204/dlist-remove.gif" rename to assets/img/posts/data-structure/2023-08-15-doubly-linked-list/dlist-remove.gif diff --git "a/assets/img/posts/data-structure/2023-08-15-\354\235\264\354\244\221-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204/dlist1.png" b/assets/img/posts/data-structure/2023-08-15-doubly-linked-list/dlist1.png similarity index 100% rename from "assets/img/posts/data-structure/2023-08-15-\354\235\264\354\244\221-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204/dlist1.png" rename to assets/img/posts/data-structure/2023-08-15-doubly-linked-list/dlist1.png diff --git "a/assets/img/posts/data-structure/2023-08-15-\354\235\264\354\244\221-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204/output.png" b/assets/img/posts/data-structure/2023-08-15-doubly-linked-list/output.png similarity index 100% rename from "assets/img/posts/data-structure/2023-08-15-\354\235\264\354\244\221-\354\227\260\352\262\260-\353\246\254\354\212\244\355\212\270\354\235\230-\352\265\254\355\230\204/output.png" rename to assets/img/posts/data-structure/2023-08-15-doubly-linked-list/output.png diff --git "a/assets/img/posts/data-structure/2023-08-22-\354\227\260\352\262\260\353\246\254\354\212\244\355\212\270-\354\235\221\354\232\251---\354\212\244\355\203\235\352\263\274-\355\201\220/.DS_Store" b/assets/img/posts/data-structure/2023-08-22-stack-and-queue-made-with-linked-list/.DS_Store similarity index 100% rename from "assets/img/posts/data-structure/2023-08-22-\354\227\260\352\262\260\353\246\254\354\212\244\355\212\270-\354\235\221\354\232\251---\354\212\244\355\203\235\352\263\274-\355\201\220/.DS_Store" rename to assets/img/posts/data-structure/2023-08-22-stack-and-queue-made-with-linked-list/.DS_Store diff --git "a/assets/img/posts/data-structure/2023-08-22-\354\227\260\352\262\260\353\246\254\354\212\244\355\212\270-\354\235\221\354\232\251---\354\212\244\355\203\235\352\263\274-\355\201\220/output.png" b/assets/img/posts/data-structure/2023-08-22-stack-and-queue-made-with-linked-list/output.png similarity index 100% rename from "assets/img/posts/data-structure/2023-08-22-\354\227\260\352\262\260\353\246\254\354\212\244\355\212\270-\354\235\221\354\232\251---\354\212\244\355\203\235\352\263\274-\355\201\220/output.png" rename to assets/img/posts/data-structure/2023-08-22-stack-and-queue-made-with-linked-list/output.png diff --git "a/assets/img/posts/data-structure/2023-08-22-\354\227\260\352\262\260\353\246\254\354\212\244\355\212\270-\354\235\221\354\232\251---\354\212\244\355\203\235\352\263\274-\355\201\220/q1.png" b/assets/img/posts/data-structure/2023-08-22-stack-and-queue-made-with-linked-list/q1.png similarity index 100% rename from "assets/img/posts/data-structure/2023-08-22-\354\227\260\352\262\260\353\246\254\354\212\244\355\212\270-\354\235\221\354\232\251---\354\212\244\355\203\235\352\263\274-\355\201\220/q1.png" rename to assets/img/posts/data-structure/2023-08-22-stack-and-queue-made-with-linked-list/q1.png diff --git "a/assets/img/posts/data-structure/2023-08-22-\354\227\260\352\262\260\353\246\254\354\212\244\355\212\270-\354\235\221\354\232\251---\354\212\244\355\203\235\352\263\274-\355\201\220/q2.png" b/assets/img/posts/data-structure/2023-08-22-stack-and-queue-made-with-linked-list/q2.png similarity index 100% rename from "assets/img/posts/data-structure/2023-08-22-\354\227\260\352\262\260\353\246\254\354\212\244\355\212\270-\354\235\221\354\232\251---\354\212\244\355\203\235\352\263\274-\355\201\220/q2.png" rename to assets/img/posts/data-structure/2023-08-22-stack-and-queue-made-with-linked-list/q2.png diff --git "a/assets/img/posts/data-structure/2023-08-22-\354\227\260\352\262\260\353\246\254\354\212\244\355\212\270-\354\235\221\354\232\251---\354\212\244\355\203\235\352\263\274-\355\201\220/stack1.png" b/assets/img/posts/data-structure/2023-08-22-stack-and-queue-made-with-linked-list/stack1.png similarity index 100% rename from "assets/img/posts/data-structure/2023-08-22-\354\227\260\352\262\260\353\246\254\354\212\244\355\212\270-\354\235\221\354\232\251---\354\212\244\355\203\235\352\263\274-\355\201\220/stack1.png" rename to assets/img/posts/data-structure/2023-08-22-stack-and-queue-made-with-linked-list/stack1.png diff --git "a/assets/img/posts/data-structure/2023-09-03-\355\212\270\353\246\254-\355\212\270\353\246\254\354\235\230-\352\270\260\354\264\210/full-b-tree.png" b/assets/img/posts/data-structure/2023-09-03-basics-of-tree/full-b-tree.png similarity index 100% rename from "assets/img/posts/data-structure/2023-09-03-\355\212\270\353\246\254-\355\212\270\353\246\254\354\235\230-\352\270\260\354\264\210/full-b-tree.png" rename to assets/img/posts/data-structure/2023-09-03-basics-of-tree/full-b-tree.png diff --git "a/assets/img/posts/data-structure/2023-09-03-\355\212\270\353\246\254-\355\212\270\353\246\254\354\235\230-\352\270\260\354\264\210/height.png" b/assets/img/posts/data-structure/2023-09-03-basics-of-tree/height.png similarity index 100% rename from "assets/img/posts/data-structure/2023-09-03-\355\212\270\353\246\254-\355\212\270\353\246\254\354\235\230-\352\270\260\354\264\210/height.png" rename to assets/img/posts/data-structure/2023-09-03-basics-of-tree/height.png diff --git "a/assets/img/posts/data-structure/2023-09-03-\355\212\270\353\246\254-\355\212\270\353\246\254\354\235\230-\352\270\260\354\264\210/node-count.png" b/assets/img/posts/data-structure/2023-09-03-basics-of-tree/node-count.png similarity index 100% rename from "assets/img/posts/data-structure/2023-09-03-\355\212\270\353\246\254-\355\212\270\353\246\254\354\235\230-\352\270\260\354\264\210/node-count.png" rename to assets/img/posts/data-structure/2023-09-03-basics-of-tree/node-count.png diff --git "a/assets/img/posts/data-structure/2023-09-03-\355\212\270\353\246\254-\355\212\270\353\246\254\354\235\230-\352\270\260\354\264\210/tree-how.png" b/assets/img/posts/data-structure/2023-09-03-basics-of-tree/tree-how.png similarity index 100% rename from "assets/img/posts/data-structure/2023-09-03-\355\212\270\353\246\254-\355\212\270\353\246\254\354\235\230-\352\270\260\354\264\210/tree-how.png" rename to assets/img/posts/data-structure/2023-09-03-basics-of-tree/tree-how.png diff --git "a/assets/img/posts/data-structure/2023-09-03-\355\212\270\353\246\254-\355\212\270\353\246\254\354\235\230-\352\270\260\354\264\210/tree-terms.png" b/assets/img/posts/data-structure/2023-09-03-basics-of-tree/tree-terms.png similarity index 100% rename from "assets/img/posts/data-structure/2023-09-03-\355\212\270\353\246\254-\355\212\270\353\246\254\354\235\230-\352\270\260\354\264\210/tree-terms.png" rename to assets/img/posts/data-structure/2023-09-03-basics-of-tree/tree-terms.png diff --git "a/assets/img/posts/data-structure/2023-09-03-\355\212\270\353\246\254-\355\212\270\353\246\254\354\235\230-\352\270\260\354\264\210/tree.png" b/assets/img/posts/data-structure/2023-09-03-basics-of-tree/tree.png similarity index 100% rename from "assets/img/posts/data-structure/2023-09-03-\355\212\270\353\246\254-\355\212\270\353\246\254\354\235\230-\352\270\260\354\264\210/tree.png" rename to assets/img/posts/data-structure/2023-09-03-basics-of-tree/tree.png