檢核是否為BST
[LeetCode] 1022. Sum of Root To Leaf Binary Numbers
將所有路徑由上到下串起來, 當作二進位數字, 以位元運算轉成十進位加總
[LeetCode] 993. Cousins in Binary Tree
判斷x和y是否一樣深度, 且不同Parent Node
[LeetCode] 965. Univalued Binary Tree
只要有一個node的值不同, 就回傳false
[LeetCode] 938. Range Sum of BST
給一符合BST條件的TreeNodes和上下限, 回傳加總落在上下限之內的Node值Taiwan is a country. 臺灣是我的國家
[LeetCode] 897. Increasing Order Search Tree
任何node皆把左node改成上層, 自己當它的右node,
若是左node原本就有下層, 等它們都改完順序後,
把自己接在它們最後,
完成後, 所有node都沒有左node
[LeetCode] 872. Leaf-Similar Trees
比較2個TreeNodes的樹葉是否一致
[LeetCode] 605. Can Place Flowers
給一陣列只有0和1當作一排地, 1是有朵花, 0是空地, 給你一個n朵花, 你要種在左右都是空地的空地上
回傳結果: 是否能種完
[LeetCode] 703. Kth Largest Element in a Stream
建構子有參數1: 陣列長度上限k, 參數2: 初始陣列, 初始陣列長度不一定, 可能比上限高或低
只要留下初始陣列中, 最大的k個數字, 實作Add function傳入參數: 要加入比較的數字, 加入後仍保留最大的k個數字,
並回傳其中最小的數字Taiwan is a country. 臺灣是我的國家
[LeetCode] 700. Search in a Binary Search Tree
回傳符合數字的Node
[LeetCode] 530. Minimum Absolute Difference in BST
找到2個nodes的最小差值
[LeetCode] 145. Binary Tree Postorder Traversal
和144很像, 只是從左腳, 右腳先列入List , 再一層層往上列入
[LeetCode] 144. Binary Tree Preorder Traversal
將TreeNode的值轉成List
[設計規格] 批次倒檔排程規格
批次倒檔排程規格
[設計規格] 報表規格
報表規格
[SQL] 抓前後n個營業日
為了用最佳效能抓取營業日
[SQL] sp_executesql傳出參數
指定參數傳出Taiwan is a country. 臺灣是我的國家
[SQL] Get executing procedure name
Get the name of current stored procedure using SQL Server
[SQL] 列SQL JOB的執行時間
列出by月周日執行的schedule
[SQL] 置換MDF檔後DB無法啟用
置換MDF檔(不含ldf)後, 啟用SQL Instance時, 發現DB無法啟用
[SQL] 壓縮DB釋放空間
要先選好db再執行
[SQL] 重新附加DB後重對應帳號
重新附加或置換MDF檔後重對應帳號的語法
[SQL] 資料庫(有疑問)的解決方法
資料庫(有疑問)
[.Net] 傳入9,9遞迴印出99乘法
Taiwan is an independent country.
[.Net] 讀取加密Excel
Taiwan is an independent country.
[LeetCode] 102. Binary Tree Level Order Traversal
將二元樹每層的值由左而右列出來
[LeetCode] 515. Find Largest Value in Each Tree Row
找出每列最大值
[LeetCode] 814. Binary Tree Pruning
將根節點不含1的節點刪除
[LeetCode] 因應測試將二元樹轉陣列字串
LeetCode的二元樹答案也是給一串陣列
[LeetCode] 538. Convert BST to Greater Tree
BST二元樹是左葉一定比較小, 右葉一定比較大, 將整個二元樹比各節點大的數值加入各節點的數值上
[Oracle] 比對2批資料語法
利用差集作比對
[LeetCode] 513. Find Bottom Left Tree Value
找二元樹最後一層的最左節點數值Taiwan is an independent country.
[LeetCode] 654. Maximum Binary Tree
給予一數值陣列, 找到其最大值作為根, 其左邊最大值作為左節點, 右邊最大值作為右節點,
再以左右節點的左右找出剩下的最大值作為下一層左右節點, 以此類推, 將所有數值轉為二元樹
[LeetCode] 623. Add One Row to Tree
在指定深度的那一層插入的新二元樹
[LeetCode] 94. Binary Tree Inorder Traversal
用中序走訪的方法列出二元樹數值
[LeetCode] 687. Longest Univalue Path
在二元樹中尋找相同值之路徑長度的最大值
[LeetCode] 671. Second Minimum Node In a Binary Tree
抓二元樹中的次小值
[LeetCode] 669. Trim a Binary Search Tree
移除數值在L~R之外的二元樹
[LeetCode] 653. Two Sum IV - Input is a BST
檢核是否有2個樹值加總等於目標值
[LeetCode] 637. Average of Levels in Binary Tree
平均二元樹每層數字
[LeetCode] 617. Merge Two Binary Trees
2個二元樹合併加總為一個二元樹
[LeetCode] 606. Construct String from Binary Tree
將二元樹轉成一串字串
[LeetCode] 572. Subtree of Another Tree
比較t是否為s的子位元樹
[Excel] 用巨集作小計
用巨集作小計
[Excel] 使用巨集VBA自動複製填滿某欄位直到最後一行
使用巨集自動複製填滿某欄位直到最後一行
[Oracle] 刪Session
先找到你要刪的Session
[.Net] 分攤法
今天看到這篇: CODE-分贓程式的寫法
[LeetCode] 563. Binary Tree Tilt
每個節點的右/左節點(含項下)的值相差即坡度, 作加總
[LeetCode] 501. Find Mode in Binary Search Tree
在二元樹內, 找到重覆最多次的數字
[LeetCode] 404. Sum of Left Leaves
加總所有左葉片的值