最新 最热

codeforces 509B(构造,思维)

There are n piles of pebbles on the table, the i-th pile contains a i pebbles. Your task is to paint each pebble using one of the k given colors so that for eac...

2020-10-23
0

GRL | 基于植被结构和生理指数的森林物候分析

全球森林覆盖面积大约占到陆地面积的30%,同时森林生态系统对于缓解大气CO2浓度上升起到不可忽视的作用。森林生长具有显著的季节变化特征,因此森林物候的变化对于森林碳汇的研究以及陆地生态系统模型的发展都有重要的意...

2020-09-24
0

Array - 164. Maximum Gap

Given an unsorted array, find the maximum difference between the successive elements in its sorted form.

2020-09-23
0

Array - 219. Contains Duplicate II

Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = nums[j] and the absolute d...

2020-09-23
0

第三章--第五节:集合

由于集合是无序的,所以索引没有任何意义,所以我们无法利用索引获取和更新元素,但是我们可通过循环的方式获取元素,代码如下:

2020-09-08
0

c++STL之常用集合算法

set_intersection:求两个容器的交集set_union:求两个集合的并集set_difference:求两个集合的差集1.set_intersection#include<iostream>using namespace std;#include <vector>#include <algo......

2020-08-26
0

数值微分|中心差分法(Central Finite Difference Approximations)

的中心差分法(Central Finite Difference Approximations ),

2020-08-25
0

数值微分|向前差分和向后差分

数值微分|中心差分法(Central Finite Difference Approximations)

2020-08-25
0

python set模块

set模块基本功能Set 最主要的功能就是寻找一个句子或者一个 list 当中不同的元素.char_list = [&#x27;a&#x27;, &#x27;b&#x27;, &#x27;c&#x27;, &#x27;c&#x27;, &#x27;d&#x27;, &#x27;d&#x27;, &#x27;d&#x27;]sentenc...

2020-08-14
0

R语言T检验的简单小例子

T检验是用来检验两组数据之间均值是否有差异的一种方法,比如下面我们用到的数据包括20个男生和20个女生的体重数据。

2020-08-07
0