데이터 구조: 선형 데이터 구조 (4) - 목록 (스 택, 대기 열, deques, 목록)
5758 단어 데이터 구조 와 알고리즘
1.1 목록 의 추상 적 인 데이터 형식
목록 은 항목 의 집합 이 며, 각 항목 은 다른 항목 에 비해 상대 적 인 위 치 를 유지 합 니 다.무질서 목록 의 구 조 는 항목 의 집합 이 며, 각 항목 은 다른 항목 에 비해 상대 적 인 위 치 를 유지 합 니 다.다음은 가능 한 무질서 목록 작업 을 보 여 줍 니 다.
1.2 서열 표 가 있 는 추상 적 인 데이터 형식
순서 목록 의 목록 형식 입 니 다.예 를 들 어 위 에서 보 여 준 정수 목록 이 서열 표 (오름차 순) 라면
17,26,31,54,77 93
。17 이 가장 작은 종목 이기 때문에, 그것 이 1 위 를 차지한다.93 이 가장 크 기 때문에 마지막 자 리 를 차지한다.질서 있 는 목록 의 구 조 는 항목 의 집합 이 며, 항목 마다 잠재 적 특성 을 바탕 으로 하 는 상대 적 인 위 치 를 저장 합 니 다.정렬 은 보통 오름차 나 내림차 순 이 며, 목록 항목 이 정 의 된 의미 있 는 비교 연산 을 가지 고 있다 고 가정 합 니 다.많은 서열 표 작업 은 무질서 목록 의 작업 과 같다.
2. 목록 의 python 구현
2.1 무질서 목록 구현: 링크
#
class Node(object):
def __init__(self, data, nextNode = None ):
self.data = data
self.nextNode = nextNode
def getData(self):
return self.data
def setData(self, newdata):
self.data = newdata
def getNext(self):
return self.nextNode
def setNext(self, newNext):
self.nextNode = newNext
class unorderedList(object):
def __init__(self, head = None):
self.head = head
def isEmpty(self):
return self.head == None
def add(self, data):
newNode = Node(data)
newNode.setNext(self.head)
self.head = newNode
def size(self) :
current = self.head
count = 0
while current != None:
count += 1
current = current.getNext () #
return count
def search(self, newdata):
current = self.head
found = False
while not found and current != None:
data = current.getData()
if newdata == data:
found = True
else:
current = current.getNext()
return found
def remove(self, newdata):
current = self.head
previous = None
found = False
while not found :
data = current.getData()
if data == newdata:
found = True
else:
previous = current
current = current.getNext()
if previous == None:
self.head = current.getNext()
else :
previous.setNext(current.getNext())
2.2 질서 있 는 링크
다른 방법 add (), search ().
#
def orderdedList(object):
def __init__(self, head = None):
self.head = head
def search(self,item):
current = self.head
found = False
stop = False
while current != None and not found and not stop:
if current.getData() == item:
found = True
else:
if current.getData() > item:
stop = True
else:
current = current.getNext()
return found
def add(self,item):
current = self.head
previous = None
stop = False
while current != None and not stop:
if current.getData() > item:
stop = True
else:
previous = current
current = current.getNext()
temp = Node(item)
if previous == None:
temp.setNext(self.head)
self.head = temp
else:
temp.setNext(current)
previous.setNext(temp)
기타 데이터 구조 원리 소개 실현:
창고:https://blog.csdn.net/qq_18888869/article/details/88086002
대기 열:https://blog.csdn.net/qq_18888869/article/details/88134592
deque:https://blog.csdn.net/qq_18888869/article/details/88137237
github 코드:https://github.com/makang101/python-data-structure
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[JAVA] 배열 회전 출력요소 가 출력 을 시작 하 는 위치 에 주의 하 십시오. 모두 몇 라운드 의 수출 이 있 습 니까? n/2 + 1 매 라 운 드 는 상, 우, 하, 좌 로 나 뉜 다. 각 방향의 시작 위치 와 좌표 의 관 계 를 구...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.