Skip to content

Commit

Permalink
update: [2주차_이가은] 2. Data Structures
Browse files Browse the repository at this point in the history
  • Loading branch information
olive-su authored Oct 16, 2023
1 parent 3500089 commit d97cf12
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ class Node {

**💖 (단방향) 연결 리스트 삭제**

1) 노드 n 이 주어지면, 이전 노드 prev 를 찾아 [prev.next](http://prev.next)[n.next](http://n.next) 가 같도록 설정한다
1) 노드 n 이 주어지면, 이전 노드 prev 를 찾아 <u>prev.next</u><u>n.next</u> 가 같도록 설정한다

- 양방향 연결 리스트일 경우, n.next가 가리키는 노드를 갱신하여 n.next.prev 가 n.prev 가 같도록 설정

Expand Down Expand Up @@ -793,4 +793,4 @@ public class SamplesHashtable
}
}
```
```

0 comments on commit d97cf12

Please sign in to comment.