上一页 1 2 3 4 5 6 7 8 9 10 ··· 20 下一页
摘要: Problem:Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations:getandset.get(key)- Get ... 阅读全文
posted @ 2015-09-04 08:53 airforce 阅读(330) 评论(0) 推荐(0) 编辑
摘要: Problem:Given a string of numbers and operators, return all possible results from computing all the different possible ways to group numbers and opera... 阅读全文
posted @ 2015-09-04 01:49 airforce 阅读(161) 评论(0) 推荐(0) 编辑
摘要: Problem:Given an array of citations (each citation is a non-negative integer) of a researcher, write a function to compute the researcher's h-index.Ac... 阅读全文
posted @ 2015-09-04 00:53 airforce 阅读(555) 评论(0) 推荐(0) 编辑
摘要: Problem:Evaluate the value of an arithmetic expression inReverse Polish Notation.Valid operators are+,-,*,/. Each operand may be an integer or another... 阅读全文
posted @ 2015-09-03 10:21 airforce 阅读(150) 评论(0) 推荐(0) 编辑
摘要: Problem:Given two integers representing the numerator and denominator of a fraction, return the fraction in string format.If the fractional part is re... 阅读全文
posted @ 2015-09-03 09:36 airforce 阅读(181) 评论(0) 推荐(0) 编辑
摘要: Problem:Given an absolute path for a file (Unix-style), simplify it.For example,path="/home/", =>"/home"path="/a/./b/../../c/", =>"/c"Analysis:This pr... 阅读全文
posted @ 2015-09-03 03:50 airforce 阅读(167) 评论(0) 推荐(0) 编辑
摘要: Problem:Given two numbers represented as strings, return multiplication of the numbers as a string.Note: The numbers can be arbitrarily large and are ... 阅读全文
posted @ 2015-09-03 01:34 airforce 阅读(157) 评论(0) 推荐(0) 编辑
摘要: Problem:Given a range [m, n] where 0 00111010101011...We can we reach the '1' in high index, all digits behind after it must change once. That's to s... 阅读全文
posted @ 2015-09-02 23:17 airforce 阅读(154) 评论(0) 推荐(0) 编辑
摘要: Problem:Write an algorithm to determine if a number is "happy".A happy number is a number defined by the following process: Starting with any positive... 阅读全文
posted @ 2015-09-02 12:30 airforce 阅读(110) 评论(0) 推荐(0) 编辑
摘要: Problem:Given an integer, convert it to a roman numeral.Input is guaranteed to be within the range from 1 to 3999.Analysis:This problem is trivial, if... 阅读全文
posted @ 2015-09-02 11:33 airforce 阅读(125) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 20 下一页