herrDeng網內搜尋

自訂搜尋

Ads

2024年12月23日 星期一

C++BFS走訪 level排序與DFS cycle長度計數解Leetcode 2471 Minimum Number of Operatio...


C++BFS走訪 level排序與DFS cycle長度計數解Leetcode 2471  Minimum Number of Operations to Sort a Binary Tree by Level
解圖論問題Leetcode 2471. Minimum Number of Operations to Sort a Binary Tree by Level,這不算稀奇,但當中還用到置換群(permutation group)的概念就比較特別。
------
Solve the graph theory problem Leetcode 2471. Minimum Number of Operations to Sort a Binary Tree by Level. This is not unusual, but the concept of permutation group is also used in it, which is quite special.

2024年11月18日 星期一

2024年11月9日 星期六

bitset C++ python解Leetcode 3133 Minimum Array End


bitset C++ python解Leetcode 3133  Minimum Array End
簡單地說就是把x和n-1的二進位塞成一個數字
-----------
Roughly speeaking, "pack" the binary expressions of x & n-1 into one number

2024年11月8日 星期五

XOR prefix sum C++ python解Leetcode 1829 Maximum XOR for Each Query


XOR prefixsum CPP python解Leetcode 1829  Maximum XOR for Each Query
其實這裡考慮的是元素個數為2^maximumBit的交換群,運算子為XOR。
[Python code請進]
Related Posts Plugin for WordPress, Blogger...

熱門文章