码迷,mamicode.com
首页 >  
搜索关键字:non-negative    ( 2271个结果
Minimum Path Sum
Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right which minimizes the sum of all numbers along its path.N...
分类:其他好文   时间:2014-08-25 20:41:44    阅读次数:192
POJ 2305 Basic remains(JAVA练习)
Description Given a base b and two non-negative base b integers p and m, compute p mod m and print the result as a base b integer. p mod m is defined as the smallest non-negative integer k such tha...
分类:编程语言   时间:2014-08-25 19:20:04    阅读次数:230
Plus One
Given a non-negative number represented as an array of digits, plus one to the number.The digits are stored such that the most significant digit is at...
分类:其他好文   时间:2014-08-25 14:42:24    阅读次数:138
【Leet Code】Add Two Numbers
Add Two Numbers  Total Accepted: 20255 Total Submissions: 88115My Submissions You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order a...
分类:其他好文   时间:2014-08-23 21:40:01    阅读次数:200
Largest Rectangle in Histogram
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...
分类:其他好文   时间:2014-08-22 21:04:59    阅读次数:168
leetcode之Container With Most Water 和Trapping Rain Water
Container With Most Water   Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line...
分类:移动开发   时间:2014-08-22 16:17:59    阅读次数:208
poj3422--Kaka's Matrix Travels(拆点,最大费用)
Kaka's Matrix Travels Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 7802   Accepted: 3138 Description On an N × N chessboard with a non-negative number in ...
分类:其他好文   时间:2014-08-21 21:15:18    阅读次数:300
每日算法之四十三:Rotate List (列表旋转k个元素)
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->NULL. 这里的k可能是比链表长度要大的数字,因此实际旋转的位置就是k%le...
分类:其他好文   时间:2014-08-20 22:46:23    阅读次数:253
Gray Code
The gray code is a binary numeral system where two successive values differ in only one bit.Given a non-negative integer n representing the total numb...
分类:其他好文   时间:2014-08-20 22:21:12    阅读次数:210
[LeetCode] Rotate List
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...
分类:其他好文   时间:2014-08-18 21:57:12    阅读次数:244
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!