RT。。。老实说这一章我是抖的。。。但是,加油~ ...
分类:
其他好文 时间:
2018-11-12 17:32:28
阅读次数:
165
Given two strings s and t, determine if they are isomorphic. Two strings are isomorphic if the characters in s can be replaced to get t. All occurrenc ...
分类:
其他好文 时间:
2018-11-12 13:13:31
阅读次数:
120
1. Two Sum Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input wo ...
分类:
其他好文 时间:
2018-11-12 11:14:27
阅读次数:
100
王庆帅 Content One.Basic Two.王庆帅人生事件纪要纪要 Three.Resume ...
分类:
其他好文 时间:
2018-11-11 19:09:26
阅读次数:
201
分析 难度 易 来源 https://leetcode.com/problems/intersection-of-two-linked-lists/ 把第一个链表的结尾指向第二个链表的开头。 如果两个链表有交集,则新的链表有环 环的开始处即两个链表交集的起始节点 题目 Write a program ...
分类:
其他好文 时间:
2018-11-11 00:54:26
阅读次数:
159
The string APPAPT contains two PAT's as substrings. The first one is formed by the 2nd, the 4th, and the 6th characters, and the second one is formed ...
分类:
其他好文 时间:
2018-11-10 23:57:21
阅读次数:
192
【Practice11_Zipcode_ArrayList】 Zipcode class: //3 variables: zipcode, city, county, and compare by county County: //two variables: county and count, a ...
分类:
编程语言 时间:
2018-11-10 10:47:30
阅读次数:
170
暴力法可解决,速度很慢。 解决办法:哈希表 知识点: map的构造 遍历map使用迭代器,判断条件 插入 pair<int,int> 寻找key是否存在 class Solution { public: vector<int> twoSum(vector<int>& nums, int target ...
分类:
编程语言 时间:
2018-11-10 00:56:52
阅读次数:
167
第一想法是顺着题目的原因,将两链表分别转化为一个数字,再将数字相加,然后把结果转化为字符串,存到答案链表中。但是数据太大会溢出! 所以,要在计算一对数字的过程当中直接存储一个结果,注意结果大于9时进位,删去最终链表的最后一个节点。 ...
分类:
其他好文 时间:
2018-11-10 00:13:56
阅读次数:
157
Array中的srot()方法 sort()方法是用来重排序的方法。在默认情况下,sort()方法按升序排列数组项 即最小的值位于最前面,最大的值排在最后面。 我们看看官方是怎么说的: arrayObj.srot(sortFunction) 参数 arrayObj 必选项。任意Array对象 sor ...
分类:
Web程序 时间:
2018-11-09 22:04:26
阅读次数:
225