js使用栈或数组完成leetCode算法题第1716道(计算力扣银行的钱)

<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
</head>
<h1>题目描述</h1>
<h4>Hercy 想要为购买第一辆车存钱。他每天都往力扣银行里存钱。最开始,他在周一的时候存入1块钱。从周二到周日,他每天都比前一天多存入1块钱。在接下来每一个周一,他都会比前一个周一多存入1块钱。给你n,请你返回在第n天结束的时候他在力扣银行总共存了多少块钱。
    <a href="https://leetcode-cn.com/problems/calculate-money-in-leetcode-bank" target="_blank">来源:力扣(LeetCode)链接:</a> 著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。
</h4>
<h1>解题思路</h1>
<h4>可以使用数组也可以使用栈,具体实现就是判断是否是星期一,找到每天应该多少钱</h4>
<h1>尝试使用</h1>
请输入天数(一个大于0的整数):
<input type="text" id="input" /> day
<br />
<button id="btn">计算</button>
<br /> 存入银行的钱:
<input type="text" id="output" /><br />
<h1>代码实现</h1>
<h4>数组的方式</h4>
<pre>
    <code>
        // 数组的方式
        const main = function(n) {
            const item = [];
            // 1.有多少天,存多少次钱
            for (let i = 1; i <= n; i++) {
                if (i % 7 === 1) {
                    // 2.1 如果是星期一
                    // 第几周就存几块钱
                    item.push(Math.floor(i / 7) + 1);
                } else {
                    // 2.2 如果不是星期一
                    // 就比前一天多存一块钱
                    item.push(item[item.length - 1] + 1);
                }
            }
            // 3.数组累加返回一共存了多少钱
            return item.reduce((total, im) => {
                total = total + im;
                return total;
            }, 0)
        };
        document.getElementById("btn").addEventListener("click", function() {
            const inputValue = document.getElementById("input").value;
            // 字符类型转数值类型
            const outputValue = main(inputValue - 0);
            document.getElementById("output").value = outputValue;
        });
    </code>
</pre>
<h4>栈的方式</h4>
<pre>
    <code>
        // 栈的方式
        const main = function(n) {
            const stack = new Stack();
            // 1.有多少天,存多少次钱
            for (let i = 1; i <= n; i++) {
                if (i % 7 === 1) {
                    // 2.1 如果是星期一
                    // 第几周就存几块钱
                    stack.push(Math.floor(i / 7) + 1);
                } else {
                    // 2.2 如果不是星期一
                    // 就比前一天多存一块钱
                    stack.push(stack.peek() + 1);
                }
            }
            console.log(stack.getStack());
            let sum = 0;
            while (!stack.isEmpty()) {
                sum += stack.peek();
                stack.pop();
            }
            return sum
        }
        document.getElementById("btn").addEventListener("click", function() {
            const inputValue = document.getElementById("input").value;
            // 字符类型转数值类型
            const outputValue = main(inputValue - 0);
            document.getElementById("output").value = outputValue;
        });
    </code>
</pre>

<body>
    <script src="../../Stack.js"></script>
    <script>
        // 数组的方式
        // const main = function(n) {
        //     const item = [];
        //     // 1.有多少天,存多少次钱
        //     for (let i = 1; i <= n; i++) {
        //         if (i % 7 === 1) {
        //             // 2.1 如果是星期一
        //             // 第几周就存几块钱
        //             item.push(Math.floor(i / 7) + 1);
        //         } else {
        //             // 2.2 如果不是星期一
        //             // 就比前一天多存一块钱
        //             item.push(item[item.length - 1] + 1);
        //         }
        //     }
        //     // 3.数组累加返回一共存了多少钱
        //     return item.reduce((total, im) => {
        //         total = total + im;
        //         return total;
        //     }, 0)
        // };
        // 栈的方式
        const main = function(n) {
            const stack = new Stack();
            // 1.有多少天,存多少次钱
            for (let i = 1; i <= n; i++) {
                if (i % 7 === 1) {
                    // 2.1 如果是星期一
                    // 第几周就存几块钱
                    stack.push(Math.floor(i / 7) + 1);
                } else {
                    // 2.2 如果不是星期一
                    // 就比前一天多存一块钱
                    stack.push(stack.peek() + 1);
                }
            }
            console.log(stack.getStack());
            let sum = 0;
            while (!stack.isEmpty()) {
                sum += stack.peek();
                stack.pop();
            }
            return sum
        }
        document.getElementById("btn").addEventListener("click", function() {
            const inputValue = document.getElementById("input").value;
            // 字符类型转数值类型
            const outputValue = main(inputValue - 0);
            document.getElementById("output").value = outputValue;
        });
    </script>
</body>

</html>

Stack.js

// 栈
const Stack = function(item) {
    // 不使用因为const item = [];当使用Stack创建多个栈时,使用的都是这个[]
    // const item = [];

    this.item = item ? item : [];
    // 不使用this.push的原因是因为这样做,每一个new出来的对象都会去开辟一块空间用来保存这个方法,因为this会指向对象
    // 入栈
    this.__proto__.push = function(Element) {
        this.item.push(Element);
    };

    // 出栈
    this.__proto__.pop = function() {
        return this.item.pop();
    };

    // 获取整个栈
    this.__proto__.getStack = function() {
        return this.item;
    };

    // 检查栈顶元素
    this.__proto__.peek = function() {
        return this.item[this.item.length - 1];
    };

    // 检查栈是否为空
    this.__proto__.isEmpty = function() {
        return this.item.length == 0;
    };

    // 清除栈
    this.__proto__.clear = function() {
        this.item = [];
    };

    // 获取栈的长度
    this.__proto__.size = function() {
        return this.item.length;
    };
};

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

LiuJie_Boom

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值