给定一个长度为 n 的升序数组 nums 和两个整数 k 和 x ,从数组中找到最接近 x (两数之差最小)的 k 个数并升序得输出他们。 整数 a 比整数 b 更接近 x 需要满足 a-x a-x = b-x 时 a 数据范围: ,
示例1
输入
[1,2,3,4,5],4,4
输出
[2,3,4,5]
示例2
输入
[1,2,3,4,5],4,3
输出
[1,2,3,4]
示例3
输入
[1,2,3,4],4,0
输出
[1,2,3,4]
加载中...
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型ArrayList * @param k int整型 * @param x int整型 * @return int整型ArrayList */ public ArrayList
closestElement (ArrayList
nums, int k, int x) { // write code here } }
class Solution { public: /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型vector * @param k int整型 * @param x int整型 * @return int整型vector */ vector
closestElement(vector
& nums, int k, int x) { // write code here } };
#coding:utf-8 # # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param nums int整型一维数组 # @param k int整型 # @param x int整型 # @return int整型一维数组 # class Solution: def closestElement(self , nums , k , x ): # write code here
using System; using System.Collections.Generic; class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型一维数组 * @param k int整型 * @param x int整型 * @return int整型一维数组 */ public List
closestElement (List
nums, int k, int x) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型一维数组 * @param k int整型 * @param x int整型 * @return int整型一维数组 */ function closestElement( nums , k , x ) { // write code here } module.exports = { closestElement : closestElement };
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param nums int整型一维数组 # @param k int整型 # @param x int整型 # @return int整型一维数组 # class Solution: def closestElement(self , nums: List[int], k: int, x: int) -> List[int]: # write code here
package main import "fmt" /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型一维数组 * @param k int整型 * @param x int整型 * @return int整型一维数组 */ func closestElement( nums []int , k int , x int ) []int { // write code here }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型一维数组 * @param numsLen int nums数组长度 * @param k int整型 * @param x int整型 * @return int整型一维数组 * @return int* returnSize 返回数组行数 */ int* closestElement(int* nums, int numsLen, int k, int x, int* returnSize ) { // write code here }
# # 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 # # # @param nums int整型一维数组 # @param k int整型 # @param x int整型 # @return int整型一维数组 # class Solution def closestElement(nums, k, x) # write code here end end
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型一维数组 * @param k int整型 * @param x int整型 * @return int整型一维数组 */ def closestElement(nums: Array[Int],k: Int,x: Int): Array[Int] = { // write code here } }
object Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型一维数组 * @param k int整型 * @param x int整型 * @return int整型一维数组 */ fun closestElement(nums: IntArray,k: Int,x: Int): IntArray { // write code here } }
import java.util.*; public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型一维数组 * @param k int整型 * @param x int整型 * @return int整型一维数组 */ public int[] closestElement (int[] nums, int k, int x) { // write code here } }
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型一维数组 * @param k int整型 * @param x int整型 * @return int整型一维数组 */ export function closestElement(nums: number[], k: number, x: number): number[] { // write code here }
public class Solution { /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型一维数组 * @param k int整型 * @param x int整型 * @return int整型一维数组 */ func closestElement ( _ nums: [Int], _ k: Int, _ x: Int) -> [Int] { // write code here } }
struct Solution{ } impl Solution { fn new() -> Self { Solution{} } /** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * * @param nums int整型一维数组 * @param k int整型 * @param x int整型 * @return int整型一维数组 */ pub fn closestElement(&self, nums: Vec
, k: i32, x: i32) -> Vec
{ // write code here } }
[1,2,3,4,5],4,4
[2,3,4,5]
[1,2,3,4,5],4,3
[1,2,3,4]
[1,2,3,4],4,0
[1,2,3,4]