Description Given an array nums of n integers, are there elements a, b, c in nums such ...
Description Given an array nums of n integers, are there elements a, b, c in nums such ...
Description Write a function to find the longest common prefix string amongst an array ...
Description Roman numerals are represented by seven different symbols: I, V, X, L, C, D...
Description Roman numerals are represented by seven different symbols: I, V, X, L, C, D...
Description Determine whether an integer is a palindrome. An integer is a palindrome wh...
Description Implement atoi which converts a string to an integer. The function first di...
Description Given a 32-bit signed integer, reverse digits of an integer. Example 1: Inp...
Description The string "PAYPALISHIRING" is written in a zigzag pattern on a given numbe...
Description: Given a string s, find the longest palindromic substring in s. You may ass...
const限定符 在变量前面加上const,也可以创建一个常量。使用const创建常量的一般格式如下: 使用const的时候应该注意在声明中对const变量进行初始化。 以上...
前言 当随着C++项目项目的增大,名称相互冲突的可能性也将增加。使用多个厂商的类库时,可能导致名称冲突。例如,两个类库可能都定义了名为List, Tree和Node的类,但定...
同一个文件中只能将一个头文件include一次。记住这个规则很容易,但是很可能在不知情的情况下将头文件包含多次,因为你include的头文件里可能还会include其它的头文...
单定义原则、外部变量与extern C++有“单定义原则(One Definition Rule, ODR)”, 该规则决定了任何变量都只能有一次定义。为了实现这种需求,C+...
什么是拷贝构造函数:拷贝构造函数,顾名思义,就是在拷贝的时候调用的构造函数。 几个原则:C++ primer p406 :拷贝构造函数是一种特殊的构造函数,具有单个形参,该形...
前言 C和C++的变量名是对大小写敏感的,因此NULL和null并不是一回事,前者是C/C++中的系统关键字,null并不是。C++11以后又引入了nullptr,用以解决N...
C++中存在显示转换和隐式转换,所谓隐式转换即是比如int和float相加时,int会自动转换成float,此外还有显示转换,共有四种转换方法, static_cast, c...
在一个宁静的周末午后,躺在床上,百无聊赖,拿起手机,又是庸庸碌碌的一天。 这是一个科技发达的时代,一个信息膨胀的时代,一个大数据的时代。然而在这个时代里,没有人还愿意沉下心来...
又是一年。许多年没有写过年终总结了,大概是当我放弃了矫情的人设之后。 这次执笔,只是为了未来回忆起来能够有个念想。2020会有更多精彩的事情值得去体验,希望过去的2019...