暴力求解法,直接遍历求最大值 class Solution { public: int maxProfit(vector<int>& prices) { int maxprofit=0; for(int i=0;i<prices.size();i++) { for(int j=i+1;j<price ...
分类:
其他好文 时间:
2021-04-05 11:41:37
阅读次数:
0
把public所有东西放到wwwroot目录下 修改.htaccess <IfModule mod_rewrite.c> Options +FollowSymlinks -Multiviews RewriteEngine On RewriteCond %{REQUEST_FILENAME} !-d ...
分类:
其他好文 时间:
2021-04-02 13:38:02
阅读次数:
0
Fib(n)=Fib(n-1)+Fib(n-2);Fib1=Fib2=1; ##递归 public static int fibonacci(int n){ if (n == 1 || n == 2) { return 1; } if (n > 2) { return fibonacci(n - 1 ...
分类:
编程语言 时间:
2021-04-02 13:35:33
阅读次数:
0
暴利求解法 设置tem记录每个元素的累加和,当为奇数的时候,将tem值与sum值累加,完成所有遍历,即所有奇数长度子数组的和 class Solution { public int sumOddLengthSubarrays(int[] arr) { int sum=0; if(arr.length ...
分类:
编程语言 时间:
2021-04-02 13:31:40
阅读次数:
0
#class class People { public: void Say();//直接在类内实现也是可以的,反而更快(直接变内联) People(string name, int age, int money):m_Money(money),m_Age(age),m_Name(name) {// ...
分类:
编程语言 时间:
2021-04-02 13:29:19
阅读次数:
0
https://bbs.csdn.net/topics/392275148 C# list<> add出现问题,重复add public class index_img { public string index_img_url { get; set; } public string index_i ...
分类:
其他好文 时间:
2021-04-02 13:23:35
阅读次数:
0
不难 class Solution { public: int clumsy(int N) { int i; if(N==3) return 6; if(N==2||N==1) return N; int a=N*(N-1)/(N-2)+N-3; N-=4; int sign=1; long lon ...
分类:
其他好文 时间:
2021-04-02 13:02:35
阅读次数:
0
Public Sub SavetheattachmentNew(Item As Outlook.MailItem) Dim olApp As New Outlook.Application Dim nmsName As Outlook.NameSpace Dim vItem As Object Se ...
分类:
其他好文 时间:
2021-04-02 13:02:04
阅读次数:
0
public class DistanceRad { private static double EARTH_RADIUS = 6378.137;// 单位千米 /** * 角度弧度计算公式 rad:(). <br/> * <p> * 360度=2π π=Math.PI * <p> * x度 = x ...
分类:
编程语言 时间:
2021-04-02 13:00:40
阅读次数:
0
/* * 接口的使用 * 1.接口使用上也满足多态性 * 2.接口,实际上就是定义了一种规范 * 3.开发中,体会面向接口编程! */ public class USBTest { public static void main(String[] args) { Computer com = new ...
分类:
其他好文 时间:
2021-04-01 13:43:59
阅读次数:
0