题目: 
Say you have an array for which the ith element is the price of a given stock on day i.Design an algorithm to find the maximum profit. You may complete as many transactions as you like (ie, buy on...
                            
                            
                                分类:
其他好文   时间:
2015-04-05 23:34:42   
                                阅读次数:
180
                             
                    
                        
                            
                            
                                1 #include 2 #include 3 #include 4 #include 5 #include 6 #define sc(x) scanf("%d", &x) 7 #define sc2(x,y) scanf("%d%d", &x, &y) 8 #define pf...
                            
                            
                                分类:
其他好文   时间:
2015-04-05 23:28:19   
                                阅读次数:
165
                             
                    
                        
                            
                            
                                题目链接:https://leetcode.com/problems/maximum-product-subarray/较麻烦的解法:先判断数组中有没有0,有的话可以转换为求"0之前"和"0之后"两部分的较大值。遍历,记录数组中负数的个数:偶数:由于数组中都是整数,最大值即这些值的乘积。奇数:有以下...
                            
                            
                                分类:
其他好文   时间:
2015-04-05 23:22:57   
                                阅读次数:
164
                             
                    
                        
                            
                            
                                题目链接:https://leetcode.com/problems/binary-tree-maximum-path-sum/题中要求 maxPathSum(TreeNode *root)函数返回二叉树中最大的"Path Sum"。而这个最大的"Path Sum"可以被分解为三部分之和:"左子树的...
                            
                            
                                分类:
其他好文   时间:
2015-04-05 23:11:44   
                                阅读次数:
158
                             
                    
                        
                            
                            
                                Say you have an array for which theithelement is the price of a given stock on dayi.Design an algorithm to find the maximum profit. You may complete a...
                            
                            
                                分类:
其他好文   时间:
2015-04-05 17:26:22   
                                阅读次数:
131
                             
                    
                        
                            
                            
                                题意:对于给定的一组数,求该组数中两两gcd的最大值;思路:简单gcd,亮点在于每组数的个数并不提供,因此需要在读入是做出判断;#include#include#include#includeusing namespace std;#define eps 1e-5int t,i,j,k,num[50...
                            
                            
                                分类:
其他好文   时间:
2015-04-05 11:58:45   
                                阅读次数:
160
                             
                    
                        
                            
                            
                                1、logistic回归是统计学习中的经典分类方法。
      最大熵模型:最大熵是概率模型学习的一个准则,将其推广到分类问题得到最大熵模型。
     两者都是对数线性模型。
2、二项logstic分类模型:用于二类分布。
     多项logstic分类模型:用于多类分布。
3、最大熵模型(maximum entropy model):是由最大熵原理推导实现。
...
                            
                            
                                分类:
其他好文   时间:
2015-04-05 09:14:27   
                                阅读次数:
346
                             
                    
                        
                            
                            
                                DedeCMS出现Fatal error: Maximum execution time of 30 seconds exceeded in解决办法 解决办法: 在服务器中找到php.ini这个文件(c盘Windows的也要改) 修改:max_execution_time = 30 max_...
                            
                            
                                分类:
其他好文   时间:
2015-04-05 08:57:02   
                                阅读次数:
101
                             
                    
                        
                            
                            
                                Given a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the root node down to the farthest le...
                            
                            
                                分类:
其他好文   时间:
2015-04-04 22:22:21   
                                阅读次数:
229
                             
                    
                        
                            
                            
                                LeetCode104:Maximum Depth of Binary TreeGiven a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path fr...
                            
                            
                                分类:
其他好文   时间:
2015-04-04 11:52:56   
                                阅读次数:
93