给定一个int正整数数组A及其大小n,请找出数组中每个元素的后面比它大的最小的元素(最接近的),若不存在则为-1。并返回每个元素对应的值组成的那个数组。保证n小于等于1000。 测试样例: [11,13,10,5,12,21,3],7 [12,21,12,12,21,-1,-1]
加载中...
import java.util.*; public class NextElement { public int[] findNext(int[] A, int n) { // write code here } }
class NextElement { public: vector
findNext(vector
A, int n) { // write code here } };
# -*- coding:utf-8 -*- class NextElement: def findNext(self, A, n): # write code here
class NextElement { public int[] findNext(int[] A, int n) { // write code here } }