Implement strStr().
Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.
题目大意:实现一个子串查找函数
[……]
Implement strStr().
Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.
题目大意:实现一个子串查找函数
[……]
Given an array S of n integers, are there elements a, b, c in S such that a + b + c = 0?
Find all unique triplets in the array which gives the sum of zero.
题目大意:找到三个数的和为0.
[……]
找所有字符串的最长前缀公共子串。
[……]
十进制整数转罗马数字 – 罗马数字转十进制整数
IntToRoman 和 RomanToInt 两个不错的题,搞成模板不错。
[……]
题目大意:选两个线加上x轴组成容器,装下更多的水。
[……]
简易正则匹配…不坑,就是不太会(⊙﹏⊙)b[……]
Determine whether an integer is a palindrome. Do this without extra space.
[……]
atoi 函数…比较经典的面试坑题。
[……]
翻转整数,注意几个坑点…
[……]
波浪形的…额,转换? 简单题。
[……]
这题的期望最优解应该是manacher算法…又叫manacher最长回文子串。
这里给出Python解法 和 C++解法…
[……]
从两个已排序的数组中找到中位数,要求时间复杂度为log(m+n);
苦逼…各种被虐…C/C++、Python,三个版本。
[……]
写个算法还要各种查python语法…真可怜(⊙﹏⊙)b
[……]
Given a string, find the length of the longest substring without repeating characters.
[……]