【LeetCode】390. Elimination Game

本文探讨了一种筛选算法,该算法从一个有序整数列表开始,通过交替地从左到右和从右到左移除元素的方式,最终只剩下一个数字。文章提供了一个递归迭代的解决方案,并对其进行了详细解析。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

There is a list of sorted integers from 1 to n. Starting from left to right, remove the first number and every other number afterward until you reach the end of the list.

Repeat the previous step again, but this time from right to left, remove the right most number and every other number from the remaining numbers.

We keep repeating the steps again, alternating left to right and right to left, until a single number remains.

Find the last number that remains starting with a list of length n.

下面给出自己的迭代求解算法:

var last = function(n,lORr){
    if(n==1){
        return 1
    }else{
        if(lORr){//from left to right
            if(n%2 === 0){
                return 2*last((n/2),false)
            }else{
                return last(n-1,true)
            }
        }else{//from right to left
            if(n%2 === 0){
                return 2*last((n/2),true)-1
            }else{
                return 2*last(((n-1)/2),true)
            }
        }
    }
}

代码分析:
本题从正向来做,看似可行,实则没有多大意义,浪费时间跟内存消耗。仔细分析题意可以发现并不需要正向解决问题。逆向考虑,也许会更方便。每次排除一半,最后只留下一个数。逆推过来的话,就是:第一个数,反推倒数第二步剩下的三个数(或两个数)。每次删除的数总会呈对称结构,删除的总次数不会多于Log2N次。
从解题的复杂性来看,用递归迭代是一个不错的方法。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值