While solving a geometry problem, I came across an approach called Sliding Window Algorithm.
Couldn't really find any study material/details on it.
What is the algorithm about?
While solving a geometry problem, I came across an approach called Sliding Window Algorithm.
Couldn't really find any study material/details on it.
What is the algorithm about?
Generally speaking a sliding window is a sub-list that runs over an underlying collection. I.e., if you have an array like
a sliding window of size 3 would run over it like
This is useful if you for instance want to compute a running average, or if you want to create a set of all adjacent pairs etc.
This is the code of the sliding window protocol for an array of size n, where sum of k numbers is stored together in another array sum.The following code is in Java.