Leetcode-908 Smallest Range I(最小差值 I)
Posted Asurudo Jyo の 倉 庫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode-908 Smallest Range I(最小差值 I)相关的知识,希望对你有一定的参考价值。
1 class Solution 2 { 3 public: 4 int smallestRangeI(vector<int>& A, int K) 5 { 6 int Max = INT_MIN; 7 int Min = INT_MAX; 8 for(auto d:A) 9 { 10 if(d > Max) 11 Max = d; 12 if(d < Min) 13 Min = d; 14 } 15 16 if(Min+2*K>=Max) 17 return 0; 18 else 19 return Max-Min-2*K; 20 } 21 };
以上是关于Leetcode-908 Smallest Range I(最小差值 I)的主要内容,如果未能解决你的问题,请参考以下文章
Leetcode-908 Smallest Range I(最小差值 I)