码迷,mamicode.com
首页 >  
搜索关键字:note    ( 7358个结果
[Leetcode] Minimum Path Sum
Given amxngrid filled with non-negative numbers, find a path from top left to bottom right whichminimizesthe sum of all numbers along its path.Note:Yo...
分类:其他好文   时间:2014-10-24 18:14:00    阅读次数:183
Leetcode:Singel Number
问题描述: Given an array of integers, every element appears twice except for one. Find that single one. Note: Your algorithm should have a linear runtime complexity. Could you implement it without ...
分类:其他好文   时间:2014-10-24 13:08:49    阅读次数:221
自定义Adapter中getView( )中使用View.setTag()和不使用的区别。
首先来看使用Tag的情况。 @Override public View getView(int position, View view, ViewGroup group) { ViewHolder holder = new ViewHolder(); if(view==null){ view = inflater.inflate(R.layout.note_list_item,...
分类:其他好文   时间:2014-10-23 10:41:53    阅读次数:308
leetcode - Anagrams
Given an array of strings, return all groups of strings that are anagrams. Note: All inputs will be in lower-case. class Solution { public: std::vector anagrams(std::vector &strs) { ...
分类:其他好文   时间:2014-10-23 09:33:28    阅读次数:173
nginx mac 10.10 编译报错
/os/unix-I../pcre-8.36-Iobjs\ -oobjs/src/core/ngx_crypt.o\ src/core/ngx_crypt.csrc/core/ngx_crypt.c:82:5:error:‘MD5_Init‘isdeprecated:firstdeprecatedinOSX10.7[-Werror,-Wdeprecated-declarations]ngx_md5_init(&md5);^src/core/ngx_md5.h:30:25:note:expanded..
分类:系统相关   时间:2014-10-23 06:59:54    阅读次数:398
[HDU 5074] Hatsune Miku (动态规划)
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=5074题目大意是给你m个note,n个数,得分是v[a[i]][a[i+1]]的总和,如果说a[i]是负数的话代表可以放人一个note,否则就只能放他给的note号。问:最大的得分是多少?我先写了记忆化搜...
分类:其他好文   时间:2014-10-23 01:15:04    阅读次数:169
通过脚本获取指定表的所有Insert语句
--通过脚本获取指定表的所有Insert语句。Create procedure [dbo].[sp_GetInsertSQL] @tablename_mask varchar(30) = NULL as begin -- NOTE: If, when executing in the Query ....
分类:其他好文   时间:2014-10-22 17:45:45    阅读次数:186
[Leetcode] Binary Tree Inorder Traversal
Given a binary tree, return theinordertraversal of its nodes' values.For example:Given binary tree{1,#,2,3}, 1 \ 2 / 3return[1,3,2].Note...
分类:其他好文   时间:2014-10-22 14:10:45    阅读次数:154
Single Number 数组中除了某个元素出现一次,其他都出现两次,找出这个元素
Given an array of integers, every element appearstwiceexcept for one. Find that single one.Note:Your algorithm should have a linear runtime complexity...
分类:编程语言   时间:2014-10-21 22:53:06    阅读次数:316
LeetCode Pascal's Triangle II
Given an indexk, return thekthrow of the Pascal's triangle.For example, givenk= 3,Return[1,3,3,1].Note:Could you optimize your algorithm to use onlyO(...
分类:其他好文   时间:2014-10-21 19:38:03    阅读次数:251
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!