LeetCode Container With Most Water LeetCode解題之Container With Most Water 原題 給定一組
LeetCode Regular Expression Matching LeetCode解題之Regular Expression Matching 原題
實戰c++中的vector系列--vector(unique_ptr())初始化(所有權轉移) C++11為我們提供了智能指針,給我們帶來了很多便利的地方。 那
實戰c++中的vector系列--vector(unique_ptr())作為函數的參數 現在就討論一下,把vector作為函數的參數進行傳遞。 也是直接上一段
實戰c++中的vector系列--vector(unique_ptr())賦值給vector(unique_ptr()) 之前博客講到 vector可以使用in
實戰c++中的vector系列--可怕的迭代器失效之二(刪除vector中元素) 直接撸代碼: #include #include using namespa
leetcode筆記:Longest Substring Without Repeating Characters 一. 題目描述 Given a string
實戰c++中的vector系列--使用vector構造二維數組 二維數組有時候被用到,但是很少有人會使用vector來構造一個二維數組。 首先,需要明確的是,在
LeetCode Palindrome Number 原題 判斷一個int型數字是否是回文形式,不許用額外的空間。 注意點: 負數都是不回文數 不許用額外的空間
實戰c++中的vector系列--可怕的迭代器失效(vector重新申請內存) vector給我們提供了很多的方便,但是偶爾也會有陷阱。當不注意的時候,就掉入其
實戰c++中的vector系列--copy set to vector(別混淆了reserve和resize) stl算法中有個copy函數,我們可以輕松的寫出
實戰c++中的vector系列--將迭代器轉換為索引 stl的迭代器很方便 用於各種算法。 但是一想到vector,我們總是把他當做數組,總喜歡使用下標索引,而
實戰c++中的vector系列--assign() push_back() or insert() 之前博客《實戰c++中的vector系列–構造、
實戰c++中的string系列--將string用於switch語句(c++做C#的事兒, switch中break還是return厲害) 作為一個C++程
實戰c++中的string系列--不要使用memset初始化string(一定別這麼干) 百度百科第一次這麼給力: void *memset(void *s,
leetcode筆記:Jump Game 一. 題目描述 Given an array of non-negative integers, you are in
實戰c++中的vector系列--構造、operator=和assign區別 vector也許是實際過程中使用最多的stl容器,看似簡單,其實有很多技巧和陷阱。