43. Multiply Strings Given two non-negative integers num1 and num2 represented as strings, return the product of num1 and num2, also represented as a ...
分类:
Web程序 时间:
2019-02-24 00:54:31
阅读次数:
204
[TOC] LeetCode 单链表专题 $[2]$ Add Two Numbers 模拟,注意最后判断进位是否为1。 时间复杂度 $O(n)$ $[92]$ Reverse Linked List II 给定链表,翻转第m个结点到第n个结点。 从第m+1个结点开始,在第m 1个结点之后的位置用 头 ...
分类:
其他好文 时间:
2019-02-23 01:32:44
阅读次数:
231
题目描述: Given two strings s and t , write a function to determine if t is an anagram of s. Example 1: Input:s = "anagram", t = "nagaram" Output: true Ex ...
分类:
其他好文 时间:
2019-02-22 21:08:03
阅读次数:
159
题目要求 We are given two sentences A and B. (A sentence is a string of space separated words. Each word consists only of lowercase letters.) A word is un ...
分类:
其他好文 时间:
2019-02-22 10:28:04
阅读次数:
204
1 #include 2 #include 3 char str[10][6] = {"zero", "one", "two", "three", "four", "five", "six", "seven", "eight", "nine"}; 4 int main(){ 5 int i = 0,... ...
分类:
其他好文 时间:
2019-02-21 23:19:10
阅读次数:
247
The "eight queens puzzle" is the problem of placing eight chess queens on an 8×8 chessboard so that no two queens threaten each other. Thus, a solutio ...
分类:
其他好文 时间:
2019-02-20 21:39:03
阅读次数:
176
在windows 10+visual studio环境下运行SelectiveSearchCodeIJCV中的demo.m难免会出现下列错误 if(~exist('mexFelzenSegmentIndex','var')) 错误使用 CountVisualWordsIndex (line 21)F ...
分类:
其他好文 时间:
2019-02-20 20:06:27
阅读次数:
294
原文链接 https://www.cnblogs.com/cly none/p/SRM704Div1B.html 给出$n$和模数$P$。$q$次询问,每次给出一个$[0,p 1]$范围内的整数$v$,求有多少长度为$n$的序列$\{x\}$满足$x_i$都是$[0,p 1]$范围内的整数且$\pr ...
分类:
其他好文 时间:
2019-02-20 19:55:21
阅读次数:
177
samples 总数 如果模拟10个用户,每个用户迭代10次,那么这里显示100 median 50%用户的响应时间 90% Line 90%用户的响应时间 95% Line 95%用户的响应时间 99% Line 99%用户的响应时间 Min 最小响应时间 MAX 最大响应时间 Erro% 错误率 ...
分类:
其他好文 时间:
2019-02-20 13:22:37
阅读次数:
415
Difficulty: Easy Problem You are given an array of strings. Two strings and are special equivalent if after any number of moves , S == T. A move consi ...
分类:
其他好文 时间:
2019-02-19 23:36:11
阅读次数:
283