首页 > TAG信息列表 > sti

con·sti·tute

constitute [from com- + statuere 'to set up'] destitute [destituere 'to set down, leave'] having no money, no food, no home, nothing /'nʌθɪŋ/ institute [Origin: instituere, from statuere 'to set up'] 可做动词:introduce or st

用Psychopy实现SSVEP二分类闪烁块,并进行CCA计算

import numpy as np from psychopy import visual, core def present_stim(sti_fr_list=[1, 1], stim_time=3.0): win = visual.Window(size=(1280, 130), pos=(0, 543), color=(0, 0, 0)) block1 = visual.Rect(win, pos=(-0.82, 0), size=(0.3, 1.8), fillColor=

列表迭代器

ListIterator:列表迭代器 是List集合特有的迭代器 import java.util.ArrayList; import java.util.List; import java.util.ListIterator; //列表迭代器 public class E9 { public static void main(String[] args) { //1.创建集合对象 List<String> s = new

STI容器分类

1)sequence Containers 序列式的容器Arrary(c++11标准)固定的内存大小,不能扩充,前闭后闭。a)Vectro:可扩充,分配器能自动来帮Vector自动扩充,我们无需操心,前闭后开。Deque:双向的队列,两端可进可出,前开后开。b)List:双向链表(标准库提供的)Forward-List(C++11新加):单向链表 2)Associative C

P1233 木棍加工

Miku 很简单的线性dp 或者说不用dp 有两维,随便按照一维降序排个序,就成了个固定顺序的一维问题了。 直接\(O(n^2)\)贪心划分不下降子序列或者说运用dilworth定理,求最长上升子序列 贪心更快诶,可能是因为continue的多? dp #include<iostream> #include<cstdio> #include<algorithm> #