Algorithm 演算法 - 判圈系列 Brent 判圈算法(傳送龜算法)
Brent's Cycle Detection Algorithm (The Teleporting Turtle)
Search for a command to run...
Brent's Cycle Detection Algorithm (The Teleporting Turtle)
No comments yet. Be the first to comment.
現在應該開始有很多人想要踏入軟體工程的領域,但在進入這個領域之前,覺得先了解一些名詞,可以在入門時更有方向也更知道要用什麼關鍵字去找尋有用的資訊。這篇文章就是想要幫助想要入門的人理解一些軟體工程裡的專有名詞。 作業系統 這一區塊主要解釋跟作業系統層面相關的名詞 英文中文解釋 Operation system 簡稱 OS | 作業系統 | 就是電腦的作業系統,是三大作業系統分別是:Linux、Windows、macOS | | Linux | | 自由和開放原始碼的 UNI...
現在開始因為 ChatGPT 的出現,各種 AI 助手的功能都跑出來了。想想自己用了許久的環境設定也應該要來重新審視和建立新的開發環境了,僅此紀錄我個人的環境配置步驟和設定。 環境前置步驟 還原 MacBook Pro 至全新環境 macOS(全部資料刪除) 設定好初始設定後,登入 Apple ID 進入 App Store 確定 macOS 版本和預設 APP 都更新到最新 macOS 版本 到系統設定調整所有設定至個人習慣的設定 三指拖移 觸控板手勢開啟 防火牆開啟 輸入法設定...
從 ChatGPT 問世到現在,有許許多多的文章和討論出來。先從最早的 Google 要完蛋了,到後來的工作要被取代了,工程師失業了。 我就比較沒有想要馬上出來評論一下,我喜歡讓子彈飛一會兒。跟討論一下我自己比較在意的討論點。 Google 為什麼慢了? 結論:因為他需要更小心 很多人說 Google 怎麼被微軟搶先了一步。剛開始 Bing 說要加上 AI 的時候大家都在說 Google 怎麼慢了。我就馬上跑去看 OpenAI 的網站,靠北呀啊就 Azure 贊助的。那當然在正式上線 ChatG...
囤積癖
607. Sales Person 題目敘述 SQL Schema > Create table If Not Exists SalesPerson (sales_id int, name varchar(255), salary int, commission_rate int, hire_date date) Create table If Not Exists Company (com_id int, name varchar(255), city varchar(255)...

根據演算法期會比 Floyd 的方式快 24-36% 的速度。
這個演算法的方式其實基本上跟 Floyd 不一樣的地方在於龜兔的移動方式。在 Floyd 的演算法中,龜兔會一起移動,只是步數的不同。但在 Brent 的演算法中,只有兔子在移動。
每次兔子移動後,烏龜會馬上傳送到跟兔子一樣的位置(所以才叫 Teleporint Turtle)。然後兔子在將步數倍增移動。例如兔子第一次移動 1 格、再來 2 格、4 格一直走到底或是遇到烏龜。
當相遇時,兔子從原本位置走到烏龜的位置就是迴圈的長度。為什麼呢?因為當兔子要開始走的時候,假設位置是 x,烏龜會需要先瞬移到兔子現在的位置 x。而兔子從 x 走到烏龜的位置,不就是整整繞了一圈嗎?因此當下兔子走的步數就是迴圈的長度
def detectCycle(self):
# if head is null
# then no loop
temp = self.head
if not (temp):
return False
tortoise = temp
hare = temp.next
power = 1
length = 1
# This loop runs till we
# find the loop. If there
# is no loop then second
# pointer ends at NULL
while hare and hare != tortoise:
# condition after which
# we will update the power
# and length as smallest
# power of two gives
# the start of cycle.
if length == power:
# updating the power.
power *= 2
# updating the length
length = 0
tortoise = hare
hare = hare.next
length += 1
# if it is null then no loop
if not (hare):
return
要找出連結點的話,在找出迴圈長度後。只要將兔子放回開頭,而烏龜放到從起點走回圈長度的距離(就是 length + 1)。之後兩個同時一步一步走,走到相遇就是起點了。
這邊要來講說為什麼,發現網路上都只跟我說這樣就好,但原理還是要理解才不容易忘。
假設迴圈長度 C、起點到迴圈連接點的長度是 L。然後從連接點到烏龜的點是 A,烏龜的位置到連接點長度是 B。
A + B = C
A = C - L
C - L + B = C
C - C + B = L
B = L
所以就是 BL 喔(笑
# Now set tortoise pointer
# to the beginning and
# hare pointer to
# beginning plus cycle
# length which is length.
tortoise = hare = self.head
while length > 0:
hare = hare.next
length = length - 1
# Now move both pointers
# at same speed so that
# they meet at the
# beginning of loop.
while hare != tortoise:
hare = hare.next
tortoise = tortoise.next
return tortoise