LeetCode -- Convert SortedList To BST Given a singly linked list wher
LeetCode -- Insert Interval 題目描述: Given a set of non-overlapping intervals
LeetCode -- Longest Valid Parentheses 題目描述: Given a string containing just t
LeetCode -- Permutations 題目描述: Given a collection of numbers, return all possi
leetcode筆記:Merge Two Sorted Lists 一.題目描述 Merge two sorted linked lists and ret
[算法C++]檢測數組裡是否有兩個數之和等於某個數 問題: 檢測數組裡是否有兩個數之和等於某個數 解決方法一:先將數組排序,然後從兩頭開始遍歷 數組排序後,
[算法C++]十進制字符串轉十六進制字符串 問題描述 將一個十進制字符串轉化為十六進制字符串。 問題解決 這個問題如果只是十進制轉化為十六進制,其實是比較容
LeetCode 9 Palindrome Number (回文數) 翻譯 確定一個整數是否是回文數。不能使用額外的空間。 一些提示: 負數能不能是回
Callable和Future、FutureTask Java中除了Runnable接口,還有Callable接口。 兩者區別是,後者可以有返回值,一般用於
[LeetCode 274] H-index Given an array of citations (each citation is a non-neg
如何使用Valgrind memcheck工具進行C/C++的內存洩漏檢測 系統編程中一個重要的方面就是有效地處理與內存相關的問題。你的工作越接近系統,你就
[LeetCode 284] Peeking Iterator Given an Iterator class interface with
[LeetCode 240] Search a 2D matrix II Write an efficient algorithm that searche
LeetCode 7 Reverse Integer(翻轉整數) 翻譯 翻轉一個整型數 例1:x = 123, 返回 321 例2:x = -123,