上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 23 下一页
摘要: Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2. (each operation is counted as 1 step.)You have t... 阅读全文
posted @ 2015-08-11 17:22 尾巴草 阅读(297) 评论(0) 推荐(0) 编辑
摘要: Given a 2D binary matrix filled with 0's and 1's, find the largest square containing all 1's and return its area.For example, given the following matr... 阅读全文
posted @ 2015-08-11 16:42 尾巴草 阅读(227) 评论(0) 推荐(0) 编辑
摘要: Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in place. 1 class Solution { 2 public: 3 void setZeroes(vector... 阅读全文
posted @ 2015-08-11 15:36 尾巴草 阅读(157) 评论(0) 推荐(0) 编辑
摘要: 类似编程之美中寻找最大的k个数解法一:题目没有要求最小的k个数有序,也没要求最后n-k个数有序。既然如此,就没有必要对所有元素进行排序。这时,咱们想到了用选择或交换排序,即: 1、遍历n个数,把最先遍历到的k个数存入到大小为k的数组中,假设它们即是最小的k个数; 2、对这k个数,利用选择或交换... 阅读全文
posted @ 2015-08-11 15:23 尾巴草 阅读(190) 评论(0) 推荐(0) 编辑
摘要: 1. 一本书的页码从自然数1开始顺序编码直到自然数n。书的页码按照通常的习惯编排,每个页码都不含多余的前导数字0。例如第6页用6表示而不是06或006。数字统计问题要求对给定书的总页码,计算出书的全部页码中分别用到多少次数字0,1,2,3,.....9。思路:对于n位数,例如3位数,000-999... 阅读全文
posted @ 2015-08-11 10:10 尾巴草 阅读(477) 评论(0) 推荐(0) 编辑
摘要: Given a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more dictionary words.For e... 阅读全文
posted @ 2015-08-10 20:45 尾巴草 阅读(167) 评论(0) 推荐(0) 编辑
摘要: Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.If the last word ... 阅读全文
posted @ 2015-08-07 16:50 尾巴草 阅读(180) 评论(0) 推荐(0) 编辑
摘要: 题意:给定若干组数据,再给若干命令,模拟队列进出过程。要求,若进队列时,已有该组数据的其他数据,则放在该组最后进队列元素后面。思路:这题主要解决入队问题,如果只用一个队列表示team queue模拟的话,则在入队时会花费很多时间。因此用多个team个队列来表示team queue,再用一个队列来保存... 阅读全文
posted @ 2015-08-07 15:58 尾巴草 阅读(689) 评论(0) 推荐(0) 编辑
摘要: Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest rectangle in the hist... 阅读全文
posted @ 2015-08-05 16:28 尾巴草 阅读(140) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2015-08-05 11:21 尾巴草 阅读(4) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 23 下一页