局部最大值

#include <iostream> #include <queue> using namespace std; //輸入一個數組和一個窗口,輸出一個數組表明移動窗口的最大值 struct node {     int val;     int index;     node(int v, int i):val(v),index(i){} }; struct cmp {     bool ope
相關文章
相關標籤/搜索