Given an array with positive and negative numbers, find the maximum average subarray which length should be greater or equal to given length k. Example Given nums = [1, 12, -5, -6, 50, 3], k = 3 Return 15.667 // (-6 + 50 + 3) / 3 = 15.667 利用队列建立窗口 pu…