请设计一个复杂度为O(n)的算法,计算一个未排序数组中排序后相邻元素的最大差值。 给定一个整数数组A和数组的大小n,请返回最大差值。保证数组元素个数大于等于2小于等于500。 测试样例: [9,3,1,10],4 返回:6
加载中...
import java.util.*; public class MaxDivision { public int findMaxDivision(int[] A, int n) { // write code here } }
class MaxDivision { public: int findMaxDivision(vector
A, int n) { // write code here } };
# -*- coding:utf-8 -*- class MaxDivision: def findMaxDivision(self, A, n): # write code here
class MaxDivision { public int findMaxDivision(int[] A, int n) { // write code here } }