列表

详情


2757. 生成循环数组的值

给定你一个 循环 数组 arr 和一个整数 startIndex ,返回一个生成器对象 gen ,它从 arr 中生成值。第一次调用 gen.next() 时,它应该生成 arr[startIndex] 。每次调用 gen.next() 时,都会传入一个整数参数 jump(例如:gen.next(-3) )。

 

示例 1:

输入:arr = [1,2,3,4,5], steps = [1,2,6], startIndex = 0
输出:[1,2,4,5]
解释:  
 const gen = cycleGenerator(arr, startIndex);
 gen.next().value;  // 1, index = startIndex = 0
 gen.next(1).value; // 2, index = 1, 0 -> 1
 gen.next(2).value; // 4, index = 3, 1 -> 2 -> 3
 gen.next(6).value; // 5, index = 4, 3 -> 4 -> 0 -> 1 -> 2 -> 3 -> 4

示例 2:

输入:arr = [10,11,12,13,14,15], steps = [1,4,0,-1,-3], startIndex = 1
输出:[11,12,10,10,15,12]
解释:
 const gen = cycleGenerator(arr, startIndex);
 gen.next().value;   // 11, index = 1
 gen.next(1).value;  // 12, index = 2
 gen.next(4).value;  // 10, index = 0
 gen.next(0).value;  // 10, index = 0
 gen.next(-1).value; // 15, index = 5
 gen.next(-3).value; // 12, index = 2

示例 3:

输入:arr = [2,4,6,7,8,10], steps = [-4,5,-3,10], startIndex = 3
输出:[7,10,8,4,10]
解释:
 const gen = cycleGenerator(arr, startIndex);
 gen.next().value   // 7,  index = 3
 gen.next(-4).value // 10, index = 5
 gen.next(5).value  // 8,  index = 4
 gen.next(-3).value // 4,  index = 1  
 gen.next(10).value // 10, index = 5

 

提示:

原站题解

去查看

上次编辑到这里,代码来自缓存 点击恢复默认模板
/** * @param {Array<number>} arr * @param {number} startIndex * @yields {number} */ var cycleGenerator = function* (arr, startIndex) { }; /** * const gen = cycleGenerator([1,2,3,4,5], 0); * gen.next().value // 1 * gen.next(1).value // 2 * gen.next(2).value // 4 * gen.next(6).value // 5 */

javascript 解法, 执行用时: 56 ms, 内存消耗: 41.4 MB, 提交时间: 2023-10-15 14:40:50

/**
 * @param {Array<number>} arr
 * @param {number} startIndex
 * @yields {number}
 */
var cycleGenerator = function* (arr, startIndex) {
    var i = startIndex;
    var x = yield arr[i];
    while (true) {
        i = (i + x + 10000 * arr.length) % arr.length;
        x = yield arr[i];
    }
};

/**
 *  const gen = cycleGenerator([1,2,3,4,5], 0);
 *  gen.next().value  // 1
 *  gen.next(1).value // 2
 *  gen.next(2).value // 4
 *  gen.next(6).value // 5
 */

typescript 解法, 执行用时: 68 ms, 内存消耗: 44 MB, 提交时间: 2023-10-15 14:40:25

function* cycleGenerator(arr: number[], startIndex: number): Generator<number, void, number> {
    const arrLength = arr.length
    while (true) {
        let index = startIndex%arrLength
        index = index<0 ? index+arrLength : index
        const next = yield arr[index]
        startIndex += next
    }
};

function* cycleGenerator2(arr, startIndex) {
  while (true) {
    const jump = yield arr[startIndex]
    startIndex = (startIndex + jump)
  }
};

/**
 *  const gen = cycleGenerator([1,2,3,4,5], 0);
 *  gen.next().value  // 1
 *  gen.next(1).value // 2
 *  gen.next(2).value // 4
 *  gen.next(6).value // 5
 */

上一题