python實作單鍊錶
# 編碼:utf-8
class 節點:
def __init__(self, value):
class LinkList:
def __init__(self, data=[0 ]):
self.head = None
self.init_link_list(data)
) (self, data):
if len(data) == 0:
print("初始化資料為空白")
return
self.head = Node(data[0]) data[1:]:
current.next = Node(index)
目前= 目前.下一個
# 取得目前結點
def get_node(self, index):
if sel return
if index > self.get_length() 或索引 print("節點不存在")
return
current = self.head
i = 0
while i if i == index - 1:
return current
current = current.next
i += 1
# 取得目前元素的值
def get_data (self, 索引):
cur return "節點不存在"
return current.data
# 列印鍊錶
def print_link(self):
if self.is_empty():
目前= self.head
while current.next 不是None:
next
else:
list.append(current.data)
def get_length(self):
if self.is_empty():
count = 0
while current.next 不是None:
數+ else :
count += 1
return count
# 若為空,回傳true
# 若不為空,則回傳false
def is_empty(self):
元素索引
# data 插入的值
def add_after(self, index, data):
current = self.get_node(index)
turn "node is not exist"
current_next = current.next
current.next = Node(data)
current = current.next
current.next = current_next
# 在目前元素前插入一個元素
== 1:
current = self.get_node(index)
.head = Node(data)
self.head.next = current
current = pre.next
pre.next = Node(data)
pre next = current
# 前一個取得目前元素的元素
def get_pre_node(self, index):
("link is empty")
return
if index > self.get_length() or index print("node is not exist")
i = 0
while i pre = pre .next
i += 1
# 移除指定元素,並傳回刪除元素的值
def remove( f.is_empty():
data = self.head. data
self.head = self.head.next
current = self.get_node(index)
if pre_node is None or current is None: ")
pre_node.next = current.next
return current.data
current = self.get_node(index)
if current is None:
return "current node is none"
current.data = data
size = self.get_length()
last_node = self.get_node(size)
test
y = (1,2,3,4)
s = ["a" , "b", "c", "d"]
linkList = LinkList(y)
# linkList.init_link_list(["a", "b", "c", "d"])
# secondary = LinkList( )
# secondary.init_link_list(["x", "y", "z"])
# linkList.add_after(-1, "x")
# linkList.add_after(1, "y") List
#link. init_link_list([])
# linkList.add_before(1,"x")
# linkList.print_link()
# print("item:", linkList.get_data(2))
# print("item:", linkList.get_data(2))
# print("length:," .get_length())
# print("為空", linkList.is_empty())
# print(linkList.get_pre_node(3).data)
# print("刪除節點:",linkList.remove(2))
# linkList.merge(第二)
linkList.print_link()

熱AI工具

Undresser.AI Undress
人工智慧驅動的應用程序,用於創建逼真的裸體照片

AI Clothes Remover
用於從照片中去除衣服的線上人工智慧工具。

Undress AI Tool
免費脫衣圖片

Clothoff.io
AI脫衣器

Video Face Swap
使用我們完全免費的人工智慧換臉工具,輕鬆在任何影片中換臉!

熱門文章

熱工具

記事本++7.3.1
好用且免費的程式碼編輯器

SublimeText3漢化版
中文版,非常好用

禪工作室 13.0.1
強大的PHP整合開發環境

Dreamweaver CS6
視覺化網頁開發工具

SublimeText3 Mac版
神級程式碼編輯軟體(SublimeText3)

PHP主要是過程式編程,但也支持面向對象編程(OOP);Python支持多種範式,包括OOP、函數式和過程式編程。 PHP適合web開發,Python適用於多種應用,如數據分析和機器學習。

PHP適合網頁開發和快速原型開發,Python適用於數據科學和機器學習。 1.PHP用於動態網頁開發,語法簡單,適合快速開發。 2.Python語法簡潔,適用於多領域,庫生態系統強大。

PHP起源於1994年,由RasmusLerdorf開發,最初用於跟踪網站訪問者,逐漸演變為服務器端腳本語言,廣泛應用於網頁開發。 Python由GuidovanRossum於1980年代末開發,1991年首次發布,強調代碼可讀性和簡潔性,適用於科學計算、數據分析等領域。

在 Sublime Text 中運行 Python 代碼,需先安裝 Python 插件,再創建 .py 文件並編寫代碼,最後按 Ctrl B 運行代碼,輸出會在控制台中顯示。

Python更適合初學者,學習曲線平緩,語法簡潔;JavaScript適合前端開發,學習曲線較陡,語法靈活。 1.Python語法直觀,適用於數據科學和後端開發。 2.JavaScript靈活,廣泛用於前端和服務器端編程。

Golang在性能和可擴展性方面優於Python。 1)Golang的編譯型特性和高效並發模型使其在高並發場景下表現出色。 2)Python作為解釋型語言,執行速度較慢,但通過工具如Cython可優化性能。

在 Visual Studio Code(VSCode)中編寫代碼簡單易行,只需安裝 VSCode、創建項目、選擇語言、創建文件、編寫代碼、保存並運行即可。 VSCode 的優點包括跨平台、免費開源、強大功能、擴展豐富,以及輕量快速。

在 Notepad 中運行 Python 代碼需要安裝 Python 可執行文件和 NppExec 插件。安裝 Python 並為其添加 PATH 後,在 NppExec 插件中配置命令為“python”、參數為“{CURRENT_DIRECTORY}{FILE_NAME}”,即可在 Notepad 中通過快捷鍵“F6”運行 Python 代碼。
