“Offer 驾到,掘友接招!我正在参与2022春招打卡活动,点击查看活动详情。”
你的任务是为一个很受欢迎的银行设计一款程序,以自动化执行所有传入的交易(转账,存款和取款)。银行共有 n 个账户,编号从 1 到 n 。每个账号的初始余额存储在一个下标从 0 开始的整数数组 balance 中,其中第 (i + 1) 个账户的初始余额是 balance[i] 。
请你执行所有 有效的 交易。如果满足下面全部条件,则交易 有效 :
- 指定的账户数量在
1和n之间,且 - 取款或者转账需要的钱的总数 小于或者等于 账户余额**。**
实现 Bank 类:
Bank(long[] balance)使用下标从 0 开始的整数数组balance初始化该对象。boolean transfer(int account1, int account2, long money)从编号为account1的账户向编号为account2的账户转帐money美元。如果交易成功,返回true,否则,返回false。boolean deposit(int account, long money)向编号为account的账户存款money美元。如果交易成功,返回true;否则,返回false。boolean withdraw(int account, long money)从编号为account的账户取款money美元。如果交易成功,返回true;否则,返回false。
示例:
输入:
["Bank", "withdraw", "transfer", "deposit", "transfer", "withdraw"]
[[[10, 100, 20, 50, 30]], [3, 10], [5, 1, 20], [5, 20], [3, 4, 15], [10, 50]]
输出:
[null, true, true, true, false, false]
解释:
Bank bank = new Bank([10, 100, 20, 50, 30]);
bank.withdraw(3, 10); // 返回 true ,账户 3 的余额是 $20 ,所以可以取款 $10 。
// 账户 3 余额为 $20 - $10 = $10 。
bank.transfer(5, 1, 20); // 返回 true ,账户 5 的余额是 $30 ,所以可以转账 $20 。
// 账户 5 的余额为 $30 - $20 = $10 ,账户 1 的余额为 $10 + $20 = $30 。
bank.deposit(5, 20); // 返回 true ,可以向账户 5 存款 $20 。
// 账户 5 的余额为 $10 + $20 = $30 。
bank.transfer(3, 4, 15); // 返回 false ,账户 3 的当前余额是 $10 。
// 所以无法转账 $15 。
bank.withdraw(10, 50); // 返回 false ,交易无效,因为账户 10 并不存在。
模拟
已有的帐号为 1 到 n,分别对三种操作进行分析:
-
*transfer* 操作
如果要进行操作的帐号不在已有的帐号中,即 或者 ,那么交易无效。如果账号 的余额小于 ,那么交易无效。交易有效时,我们将账号 的余额减少 ,账号 的余额增加 。
-
deposit 操作
如果要进行操作的帐号不在已有的帐号中,即 ,那么交易无效。交易有效时,我们将账号 的余额增加 。
-
withdraw 操作
如果要进行操作的帐号不在已有的帐号中,即 ,那么交易无效。如果账号 的余额小于 ,那么交易无效。交易有效时,我们将账号 的余额减少 。
/**
* @param {number[]} balance
*/
var Bank = function (balance) {
this.bank = [0, ...balance]
this.length = balance.length + 1
};
/**
* @param {number} account1
* @param {number} account2
* @param {number} money
* @return {boolean}
*/
Bank.prototype.transfer = function (account1, account2, money) {
if (account1 > this.length || account2 > this.length || this.bank[account1] < money) return false
this.bank[account1] -= money
this.bank[account2] += money
return true
};
/**
* @param {number} account
* @param {number} money
* @return {boolean}
*/
Bank.prototype.deposit = function (account, money) {
if (account > this.length) return false
this.bank[account] += money
return true
};
/**
* @param {number} account
* @param {number} money
* @return {boolean}
*/
Bank.prototype.withdraw = function (account, money) {
if (this.bank[account] < money || account > this.length) return false
this.bank[account] -= money
return true
};
/**
* Your Bank object will be instantiated and called as such:
* var obj = new Bank(balance)
* var param_1 = obj.transfer(account1,account2,money)
* var param_2 = obj.deposit(account,money)
* var param_3 = obj.withdraw(account,money)
*/