先找到你要刪的Session
[.Net] 分攤法
今天看到這篇: CODE-分贓程式的寫法
[LeetCode] 563. Binary Tree Tilt
每個節點的右/左節點(含項下)的值相差即坡度, 作加總
[LeetCode] 501. Find Mode in Binary Search Tree
在二元樹內, 找到重覆最多次的數字
[LeetCode] 404. Sum of Left Leaves
加總所有左葉片的值
[LeetCode] 235. Lowest Common Ancestor of a Binary Search Tree
在BST內尋找共同的親節點
BST的定義: left< parent< right
[LeetCode] 112. Path Sum
判斷是否有從根節點到葉子的路徑加總符合傳入值
[LeetCode] 111. Minimum Depth of Binary Tree
在落單的葉片中, 找深度最淺的
[LeetCode] 108. Convert Sorted Array to Binary Search Tree
給一組已排序的陣列, 轉為由中位數為上層節點的二元樹(即BST/ Binary Search Tree)
[LeetCode] 110. Balanced Binary Tree
判斷每個節點的左右子節點深度差是否不超過1
[LeetCode] 101. Symmetric Tree
判斷二元樹是否是對稱
[LeetCode] 100. Same Tree
比較2個二元樹是否一樣
[LeetCode] 543. Diameter of Binary Tree
找2節點之間最長路徑的長度
[LeetCode] 因應測試產生二元樹
二元樹的題目少說也有60題
[SQL] 各TABLE 筆數
[LeetCode] 437. Path Sum III
找出所有路徑加總等於目標值的個數
[LeetCode] 257. Binary Tree Paths
列出所有的路徑
[LeetCode] 107. Binary Tree Level Order Traversal II
將二元樹每層val列成List, 每層一個List, 再組合成IList<IList<int>>由最底層排到最頂層
[LeetCode] 226. Invert Binary Tree
反轉二元樹, 這大概是我作過最簡單的LeeCode題目了....XD
[.Net] ClickOnce修改setup.exe位置
因應新建ClickOnce安裝網站
[LeetCode] 389. Find the Difference
2個亂序的字串中,其中一個字串多出了一個字母, 找出該字母
[LeetCode] 104. Maximum Depth of Binary Tree
算二元樹最深幾層
[LeetCode] 520. Detect Capital
判斷單字大小寫是否正確
[LeetCode] 448. Find All Numbers Disappeared in an Array
找出漏掉的數字
[LeetCode] 136. Single Number
找落單的數字
[LeetCode] 485. Max Consecutive Ones
陣列裡,1最多出現的次數
[LeetCode] 463. Island Perimeter
計算小島邊長
[LeetCode] 496. Next Greater Element I
有2個集合, 集合1內的每個值要在集合2找到相等值, 然後再往右找到比它大的值, 取代集合1的原值, 找不到的話就以-1取代
[LeetCode] 412. Fizz Buzz
3的倍數印Fizz, 5的倍數印Buzz, 3和5倍數印FizzBuzz
[LeetCode] 344. Reverse String
反轉字串
[LeetCode] 500. Keyboard Row
找出只要在鍵盤同一列輸入的單字
[LeetCode] 476. Number Complement
將數字轉為等長度的補數
[LeetCode] 461. Hamming Distance
將2個數字轉二進位數字後計算漢明距離(不同的字數)
[LeetCode] 1. Two Sum
在陣列中找出2個加總可等於目標值的數值
[LeetCode] 7. Reverse Integer
反轉數字
[LeetCode] 9. Palindrome Number
檢查數字是否左右對稱
[LeetCode] 12. Integer to Roman
數字轉羅馬字
[LeetCode] 13. Roman to Integer
羅馬字轉數字
[LeetCode] 14. Longest Common Prefix
找出共同的字母開頭
[ORACLE] 實用語法
查詢所有Table欄位描述
[SQL] 丟出例外但不終止後續
語法....
[SQL] 寫入Linked Server遇到的問題
寫入Linked Server遇到的問題
[.Net] 取得Enum內Attribute的方法
Enum的值是數字
[.Net] 呼叫Web Api 2
先安裝NeGet 的
[.Net] 解決VS連TFS速度過慢問題
每次在VS連TFS真是超級慢
[.Net] Server端排隊處理作法
以往隨機排隊的作法只要加個lock就夠了
[.Net] 動態產生實例或方法
動態產生實例或方法是為了降低耦合度,以下為一些簡單範例
[DevExpress] XtraGrid造成例外: DataTable毀損
DevExpress元件--XtraGrid
[SQL] 增加ms-sql內欄位後,更新相關的view
增加ms-sql內欄位後, 必須更新相關的view
[.Net] 共用元件被參考後再加Optional/params參數
共用元件被參考後再加Optional/params參數