给定一个int数组A及其大小n,返回一个int数组,int数组中的元素是原数组中每个元素比他大的下一个元素,若不存在则为-1。保证数组中元素均为正整数。 测试样例: [11,13,10,5,12,21,3],7 返回:[13,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 } }