问题: 求给定数组中,连续k个数的最大平均值。 Input: [1,12,-5,-6,50,3], k = 4 Output: 12.75 Explanation: Maximum average is (12-5-6+50)/4 = 51/4 = 12.75 Note: 1 <= k <= n < ...
分类:
其他好文 时间:
2020-03-15 13:42:22
阅读次数:
67
Given a binary tree, find the subtree with maximum average. Return the root of the subtree. Example 1 Input: {1,-5,11,1,2,4,-2} Output:11 Explanation: ...
分类:
其他好文 时间:
2020-03-05 13:42:34
阅读次数:
56
常用curl实例 抓取页面内容到一个文件中 curl -o home.html http://www.sina.com.cn 用 -O(大写的),后面的url要具体到某个文件,不然抓不下来。我们还可以用正则来抓取东西 curl -O http://www.mydomain.com/linux/ind ...
分类:
Web程序 时间:
2020-03-05 13:13:56
阅读次数:
98
#include <stdio.h> #include <stdlib.h> #include <string.h> #include <stdarg.h> int average(int num, ...); int main() { int averageRes = average(3, 1, ...
分类:
其他好文 时间:
2020-03-03 00:55:53
阅读次数:
52
1 #include <stdio.h> 2 3 int main (void) 4 { 5 int i; 6 int sum = 0; 7 int cnt = 0; 8 float avg;//average平均值的缩写 9 10 for (i = 1; i<101; ++i) 11 { 12 i ...
分类:
其他好文 时间:
2020-02-27 20:47:36
阅读次数:
55
nn.MSELoss()得到的是平均到像素的loss nn.MSELoss(size_average=False)得到整个batch所有像素loss和 MSELoss(size_average=False).div(batch_size)得到平均图像loss a=torch.Tensor([[1,1 ...
分类:
其他好文 时间:
2020-02-25 17:34:25
阅读次数:
96
1、冒泡排序 (1)算法原理: 1.比较相邻元素,如果第一个比第二个大,就交换他们两个; 2.对每一对相邻元素做同样的工作,从开始第一对到结尾的最后一对。在这一点,最后的元素应该会是最大的数; 3.针对所有的元素重复以上的步骤,除了最后一个; 4.持续每次对越来越少的元素重复上面的步骤,直到没有任何 ...
分类:
编程语言 时间:
2020-02-24 18:57:06
阅读次数:
95
一、游长实参表 利用游长实参表,可在创建方法时 不指定实参的个数 。 eg. public static double average(double…numbers) 一个参数表中 只能出现一次省略号 ,并且省略号及其类型必须放在参数表的末尾. 二、this 每个对象都可以用关键字this引用自己, ...
分类:
其他好文 时间:
2020-02-24 09:36:29
阅读次数:
59
#include "stdio.h" double average(double array[10]); void main() { double score[10]={10,20,10,20,10,20,10,20,10,20},result; result=average(score); pri ...
分类:
其他好文 时间:
2020-02-23 22:05:11
阅读次数:
277
倒挂的收益率曲线 倒挂的收益率曲线(Inverted Yield Curve) 什么是倒挂的收益率曲线 倒挂的收益率曲线是指短期证券的收益率高于长期证券收益率的一种图形,与正常收益率曲线刚好颠倒。在正常的收益率曲线中,长期收益率较高,以反映持有证券较长时间的风险。 倒挂收益率曲线一方面可能反映短期票 ...
分类:
其他好文 时间:
2020-02-21 16:06:54
阅读次数:
68