LeetCode -- Spiral Matrix II 題目描述: Given an integer n, generate a square mat
leetcode筆記:Largest Rectangle in Histogram 一.題目描述 Given n non-negative integers
C++入門學習——explicit關鍵字的作用 C++ 語言可以定義如何將其他類型的對象隱式轉換為我們的類類型, 或將我們的類類型的對象隱式轉換為其他類型。
leetcode筆記:Binary Tree Preorder Traversal 一. 題目描述 Given a binary tree, return
error LNK2019: 無法解析的外部符號 "public:,lnk2019public錯誤 1 error LNK2019: 無法解析的外部符
(轉載) socket:10038錯誤{winSock的一個bug:當closesocket多次錯誤使用時會導致問題},10038closesocket這幾天想
[LeetCode從零單刷]Container With Most Water 題目: Given n non-negative integers a1,
[LeetCode從零單刷]Find Peak Element 題目: A peak element is an element that is great
[LeetCode從零單刷]Balanced Binary Tree 題目: Given a binary tree, determine i
poj1700-Crossing River(貪心算法),crossingriver一,題意: 只有一艘船,能乘2人,船的運行時間為2人中較多一人的時間,過
C中變量名通過宏定義轉換成char*類型字符串,char字符串#include <iostream>define name_to_str(name)
poj1007-DNA Sorting(排序),poj1007-dnasorting一,題意: 輸入N個字符串,按照字符串的逆序數由最少到最大開始輸出。
(轉載)網絡編程釋疑之:同步,異步,阻塞,非阻塞,網絡編程釋疑一講到網絡編程的I/O模型,總會涉及到這幾個概念。問了很多人,沒幾個能清晰地講出他們之間的區別聯系
setprecision、fixed、showpoint的用法總結,setprecisionfixed首先要加頭文件:iomanip 一:setprecisio
poj1323-Game Prediction(貪心思想),gameprediction貪心的思想:盡量的從最大值找起。然後在剩余之中,再從最大值找起。 一,題