100. Same Tree
2018-05-16
100. Same Tree
最近好奇 Java 中 Set 到底是怎麼實作出判斷集合內部的元素有無重複的部分,所以看了一下 HashSet 原始碼的部分內容
原本看之前,猜測會是在 add 前,先檢查集合內是否已經有同樣的元素,來達成目的
654. Maximum Binary Tree
788. Rotated Digits
389. Find the Difference
695. Max Area of Island
520. Detect Capital
Java 在有 NIO 後,有許多好用的新功能,紀錄一下自己簡單嘗試後的結果
693. Binary Number with Alternating Bits
521. Longest Uncommon Subsequence I
Hibernate 中若想要將日期欄位設定成自動取得目前時間有幾種方法
My SQL
ALTER TABLE article
ADD date DATETIME DEFAULT CURRENT_TIMESTAMP
Spring MVC 中呼叫下列方法後,便可以在 Request Scope 中取得該變數
model.addAttribute("account", "dennis")
那麼是如何辦到的呢??