herrDeng網內搜尋

自訂搜尋

Ads

2024年2月22日 星期四

python C++計算 indegree解Leetcode 997 Find the Town Judge


python C++計算 indegree解Leetcode 997  Find the Town Judge
使用圖形解決方案。
由於信任中的每一對 e=(a, b) 實際上表示一種信任關係,可以將其視為有向邊。C++程式請進
---

2024年2月21日 星期三

python C++ bit 計算O(1)時間解Leetcode 201 Bitwise AND of Numbers Range


python C++ bit 計算O(1)時間解Leetcode 201  Bitwise AND of Numbers Range
這就是用x&(x-1)技法。有人會說計算時間是O(log n),但32-bit整數,無論是迴圈或遞迴頂多32次。如果要熟透bit處理的訣竅,還有更厲害的技法,請進

2024年2月20日 星期二

python C++高斯小學公式與xor sum速解Leetcode 268 Missing Number


python C++高斯小學公式與xor sum速解Leetcode 268  Missing Number
片中講兩種解法,一是用Gauss的n(n+1)/2公式,二是用xor-sum
第三種解法片中未顯示,採radix sort再binary search
Related Posts Plugin for WordPress, Blogger...

熱門文章