亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

python如何實現獲取單向鏈表倒數第k個結點的值

發布時間:2021-04-06 10:23:38 來源:億速云 閱讀:242 作者:小新 欄目:開發技術

這篇文章將為大家詳細講解有關python如何實現獲取單向鏈表倒數第k個結點的值,小編覺得挺實用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

具體如下:

#初始化鏈表的結點
class Node():
  def __init__(self,item):
    self.item = item
    self.next = None
#傳入頭結點,獲取整個鏈表的長度
def length(headNode):
  if headNode == None:
    return None
  count = 0
  currentNode =headNode
  #嘗試了一下帶有環的鏈表,計算長度是否會死循環,確實如此,故加上了count限制 = =||
  while currentNode != None and count <=1000:
    count+=1
    currentNode = currentNode.next
  return count
#獲取倒數第K個結點的值,傳入頭結點和k值
def findrKnode(head,k):
  if head == None:
    return None
  #如果長度小于倒數第K個值,則返回通知沒有這么長
  elif length(head)<k:
    print("鏈表長度沒有倒數第"+str(k)+"數")
    return None
  else:
    #設置兩個針,一個快,一個慢,都指向頭結點
    fastPr = head
    lowPr = head
    count = 0
    #讓fastPr先走k個長度
    while fastPr!=None and count<k:
      count+=1
      fastPr = fastPr.next
    #此時fastPr和lowPr同速前進,當fastPr走到尾部,lowPr此處的值正好為倒數的k值
    while fastPr !=None:
      fastPr = fastPr.next
      lowPr = lowPr.next
    return lowPr
if __name__ == "__main__":
  node1 = Node(1)
  node2 = Node(2)
  node3 = Node(3)
  node4 = Node(4)
  node5 = Node(5)
  node6 = Node(6)
  node7 = Node(7)
  node8 = Node(8)
  node9 = Node(9)
  node10 = Node(10)
  node1.next = node2
  node2.next = node3
  node3.next = node4
  node4.next = node5
  node5.next = node6
  node6.next = node7
  node7.next = node8
  node8.next = node9
  node9.next = node10
  print(findrKnode(node1,5).item)

運行結果:

6

關于“python如何實現獲取單向鏈表倒數第k個結點的值”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,使各位可以學到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

荥经县| 麻栗坡县| 马尔康县| 绩溪县| 桃江县| 惠州市| 德庆县| 晋江市| 竹山县| 侯马市| 长武县| 阳东县| 怀柔区| 松潘县| 正蓝旗| 南澳县| 金昌市| 沅江市| 和田市| 通化县| 都昌县| 石河子市| 卓资县| 尉氏县| 醴陵市| 绿春县| 富源县| 定日县| 南漳县| 霞浦县| 福安市| 桐庐县| 怀柔区| 德江县| 定陶县| 正定县| 遂溪县| 晋州市| 武平县| 共和县| 通化市|