上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 30 下一页
摘要: 好处: 能够读懂别人的代码,特别是框架相关的代码; 让编程更加简洁,代码更加清晰。 使用自定义注解解决问题!! Java1.5版本引入。 Java中的常见注解 @Override:告诉使用者及编译器,该方法覆盖了父类或接口中的同名方法 @Deprecated:表示该方法已经过时了。 @Suppvis 阅读全文
posted @ 2016-04-15 22:46 江湖小妞 阅读(410) 评论(0) 推荐(0) 编辑
摘要: 设计模式(Design pattern)是一套被反复使用、多数人知晓的、经过分类编目的、代码设计经验的总结。使用设计模式是为了可重用代码、让代码更容易被他人理解、保证代码可靠性。 毫无疑问,设计模式于己于他人于系统都是多赢的;设计模式使代码编制真正工程化;设计模式是软件工程的基石脉络,如同大厦的结构 阅读全文
posted @ 2016-04-15 22:11 江湖小妞 阅读(792) 评论(0) 推荐(0) 编辑
摘要: Question: 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 w 阅读全文
posted @ 2016-04-14 16:06 江湖小妞 阅读(317) 评论(0) 推荐(0) 编辑
摘要: Question: Given two arrays of length m and n with digits 0-9 representing two numbers. Create the maximum number of length k <= m + n from digits of t 阅读全文
posted @ 2016-04-14 13:10 江湖小妞 阅读(416) 评论(0) 推荐(0) 编辑
摘要: Question: Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below. For example, gi 阅读全文
posted @ 2016-04-11 21:41 江湖小妞 阅读(234) 评论(0) 推荐(0) 编辑
摘要: Question: 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 fol 阅读全文
posted @ 2016-04-11 17:37 江湖小妞 阅读(229) 评论(0) 推荐(0) 编辑
摘要: Question: Given a positive integer n, find the least number of perfect square numbers (for example, 1, 4, 9, 16, ...) which sum to n. For example, giv 阅读全文
posted @ 2016-04-11 15:42 江湖小妞 阅读(173) 评论(0) 推荐(0) 编辑
摘要: Question: Given a non negative integer number num. For every numbers i in the range 0 ≤ i ≤ num calculate the number of 1's in their binary representa 阅读全文
posted @ 2016-04-11 10:57 江湖小妞 阅读(271) 评论(0) 推荐(0) 编辑
摘要: Question: You are given coins of different denominations and a total amount of money amount. Write a function to compute the fewest number of coins th 阅读全文
posted @ 2016-04-11 10:01 江湖小妞 阅读(750) 评论(0) 推荐(0) 编辑
摘要: 7号晚听了邹博一次微课,正好是自己最近正在死磕的动态规划,所以搬好小板凳听邹博讲解动态规划。现将内容整理如下: 内容主要分为两个部分: 1. 动态规划和贪心的认识——工具:马尔科夫过程 2. 动态规划,通过3个DP中的经典问题详细讲解 1)最长递增子序列LIS 2)格子取数/走棋盘问题及应用 3)找 阅读全文
posted @ 2016-04-09 21:17 江湖小妞 阅读(24171) 评论(1) 推荐(1) 编辑
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 30 下一页