Given two strings s and t , write a function to determine if t is an anagram of s. Example 1: Example 2: Note:You may assume the string contains only ...
分类:
其他好文 时间:
2019-03-21 21:41:27
阅读次数:
165
[TOC] 题目描述: 给定一个整数数组,判断是否存在重复元素。 如果任何值在数组中出现至少两次,函数返回 true。如果数组中每个元素都不相同,则返回 false。 示例 1: 示例 2: 示例 3: 解法: ...
分类:
其他好文 时间:
2019-03-21 10:35:11
阅读次数:
145
【链接】 "我是链接,点我呀:)" 【题意】 依次序将数字插入到排序二叉树当中 问你每个数字它的父亲节点上的数字是啥 【题解】 按次序处理每一个数字 对于数字x 找到最小的大于x的数字所在的位置i 显然,x要放在这个x的左子树里面 所以如果x的左子树为空那么直接放上去就好 否则,左子树不为空的话,对 ...
分类:
其他好文 时间:
2019-03-21 01:08:48
阅读次数:
147
输入:abc 输出:bac,cba,acb,bca,cab,abc 全排列的问题: 全组合: 打靶问题: ...
分类:
其他好文 时间:
2019-03-19 20:11:14
阅读次数:
155
一、Axis2的下载和安装 1.可从http://ws.apache.org/axis2/ 下载Axis2的最新版本: 可以下载如下两个zip包: axis2-1.5.4-bin.zip axis2-1.5.4-war.zip 其中 axis2-1.5.4-bin.zip文件中包含了Axis2中所有 ...
分类:
Web程序 时间:
2019-03-19 15:15:08
阅读次数:
188
Maximum subarray problem The maximum subarray problem is the task of finding the contiguous subarray within a one-dimensional array, a[1...n], of numb ...
分类:
其他好文 时间:
2019-03-19 13:47:30
阅读次数:
207
starts-with 顾名思义,匹配一个属性开始位置的关键字 contains 匹配一个属性值中包含的字符串 text() 匹配的是显示文本信息,此处也可以用来做定位用 eg //input[starts-with(@name,'name1')] 查找name属性中开始位置包含'name1'关键字 ...
分类:
其他好文 时间:
2019-03-18 13:56:24
阅读次数:
138
任意门:http://acm.hdu.edu.cn/showproblem.php?pid=3292 No more tricks, Mr Nanguo Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 65535/32768 K (Java/ ...
分类:
其他好文 时间:
2019-03-17 23:48:07
阅读次数:
229
# 解题思路:用查找表(集合),保存其K个值的状态 20190302 找工作期间class Solution(object): def containsNearbyDuplicate(self, nums, k): """ :type nums: List[int] :type k: int :rt ...
分类:
其他好文 时间:
2019-03-17 15:50:42
阅读次数:
158
Balanced Lineup Time Limit: 5000MS Memory Limit: 65536K Total Submissions: 68466 Accepted: 31752 Case Time Limit: 2000MS Description For the daily mil ...
分类:
其他好文 时间:
2019-03-16 12:50:34
阅读次数:
122