N.B: Outputs are similar to matlab built in function movmedian #include <bits/stdc++.h> using namespace std; vector<double&...
Read More
Home / Archive for March 2019
Depth First Search (DFS) by Stack in C++
#include <bits/stdc++.h> using namespace std; vector<int>edges[100]; stack<int>q; vector<int>item; int level[...
Read More
Moving Mean or Moving Average in C++
N.B: Outputs are similar to matlab built in function movmean #include <bits/stdc++.h> using namespace std; vector<double&g...
Read More
How to Get Multiple Values From a Fuction in C++
#include <bits/stdc++.h> using namespace std; void sum(int r,int &result, vector<int> &c,vector<string>&s...
Read More
Subscribe to:
Posts
(
Atom
)