Given two strings s and t, write a function to determine if t is an anagram of s.For example,s = "anagram", t = "nagaram", return true.s = "rat", t = ...
分类:
其他好文 时间:
2015-08-04 13:07:45
阅读次数:
93
Given a list, rotate the list to the right by k places, where k is non-negative.For example:Given 1->2->3->4->5->NULL and k = 2,return 4->5->1->2->3->...
分类:
其他好文 时间:
2015-08-04 11:06:39
阅读次数:
114
1,设置分页容器参考laraver手册我的设置代码如下://设置分页容器/app/models/ZurbPresenter.php'.$page.'';}publicfunctiongetDisabledTextWrapper($text){return''.$text.'';}publicfunc...
分类:
Web程序 时间:
2015-08-04 10:50:36
阅读次数:
151
publicfunctionbuyerAlreadybrand(){$effect=Request::get('effect');$data=$this->brand->where(function($query)use($effect){if($effect==-1){return$query->...
分类:
数据库 时间:
2015-08-04 10:36:23
阅读次数:
365
看仔细题意
#include
using namespace std;
bool cmp(int a,int b)
{
return a>b;
}
int main()
{
int cases;
scanf("%d",&cases);
while(cases--){
int n,a[500 + 5];
scanf("%d",&n...
分类:
其他好文 时间:
2015-08-04 09:29:06
阅读次数:
125
The Kth smallest element in a BST
分类:
其他好文 时间:
2015-08-04 09:25:26
阅读次数:
113
函数柯里化currying,是函数式编程非常重要的一个标志。它的实现需要满足以下条件,首先就是函数可以作为参数进行传递,然后就是函数可以作为返回值return出去。我们依靠这个特性编写很多优雅酷炫的代码。那我们来看一下最简单的实现。大家一般都是举addSum的例子,我当然也不例外。add = (nu...
分类:
编程语言 时间:
2015-08-04 09:21:19
阅读次数:
122
bool containsDuplicate(vector& nums) { return !(nums.size() == unordered_set(nums.cbegin(), nums.cend()).size());}
分类:
编程语言 时间:
2015-08-04 09:18:15
阅读次数:
117
1 public class Solution { 2 public List> levelOrder(TreeNode root) { 3 List> res = new ArrayList>(); 4 if(root == null) return ...
分类:
其他好文 时间:
2015-08-04 07:04:20
阅读次数:
131
Description:Given two strings s and t, write a function to determine if t is an anagram of s.For example, s = "anagram", t = "nagaram", return true. s...
分类:
其他好文 时间:
2015-08-04 02:02:27
阅读次数:
119