티스토리 뷰
반응형
연결리스트에 새로운 데이터 추가하기
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
class Node:
def __init__(self, data, next=None):
self.data = data
self.next = next
class NodeMgmt:
def __init__(self, data):
self.head = Node(data)
def add(self, data):
if self.head == '':
self.head = Node(data)
else:
node = self.head
while node.next:
node = node.next
node.next = Node(data)
def desc(self):
node = self.head
while node:
print(node.data)
node = node.next
def delete(self,data):
if self.head == '':
print("data가 없습니다.")
return
if self.head.data == data:
temp = self.head
self.head = self.head.next
del temp
else: # node의 head가 아닌 값을 삭제할 경우
node = self.head
# node의 다음값이 존재하는 동안
while node.next:
if node.next.data == data:
temp = node.next
node.next = temp.next
del temp
else:
node = node.next
|
cs |
반응형
'알고리즘 학습 > 알고리즘 개념' 카테고리의 다른 글
Python, Swift로 { 버블 정렬, 선택 정렬, 삽입 정렬, 퀵 정렬, 병합 정렬 } 구현하기 (2) | 2022.03.14 |
---|---|
Swift - 에라토스테네스의 체(sieve of Eratosthenes) for 소수 판별 (0) | 2021.08.14 |
정규표현식 (0) | 2020.09.09 |
최적 부분 구조(Optimal Substructure) (0) | 2020.09.04 |
Quick Sort (퀵소트) (0) | 2020.08.19 |
댓글
반응형
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 순열사이클#BOJ#Python
- Distinct#Codility#Python
- 텀 프로젝트#백준알고리즘#Python
- django
- N으로 표현#DP#Programmers#Python
- 병든 나이트#BOJ#탐욕법#Python
- 종이자르기#분할정복#BOJ#Python
- 터틀비치#리콘#xbox#controller
- 나무자르기#BOJ#이분탐색#Python
- Brackets#Stacks and Queues#Codility#Python
- 파이썬알고리즘인터뷰#4장
- 쿼드트리#BOJ#분할정복#Python
- django#slicing
- 날짜 계산#BOJ#완전탐색#Python
- 공유기 설치#BOJ#이분탐색#Python
- 토마토#백준알고리즘#Python
- 리모컨#완전탐색#BOJ#Python
- Swift#Tuples#Range
- 랜선자르기#이분탐색#BOJ#Python
- filter#isalnum#lower
- Triangle#Sorting#Codility#Python
- 배열합치기#분할정복#BOJ#Python
- 섬의개수#백준알고리즘#Python
- API#lazy#
- 미로 탐색#백준알고리즘#Python
- 암호코드#dp#BOJ#Python
- 백준 알고리즘#BackTracking
- NumberofDiscIntersections#Codility#Sort#Python
- PassingCars#Codility#Python
- 반복수열#백준알고리즘#Python
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함