leetcode2043_go_简易银行系统

题目

你的任务是为一个很受欢迎的银行设计一款程序,以自动化执行所有传入的交易(转账,存款和取款)。

银行共有 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 并不存在。

提示:n == balance.length

1 <= n, account, account1, account2 <= 105

0 <= balance[i], money <= 1012

transfer, deposit, withdraw 三个函数,每个 最多调用 104 次

解题思路分析

1、模拟;时间复杂度O(n),空间复杂度O(n)

leetcode2043_go_简易银行系统

type Bank struct {
   arr []int64
   n   int
}

func Constructor(balance []int64) Bank {
   return Bank{arr: balance, n: len(balance)}
}

func (this *Bank) Transfer(account1 int, account2 int, money int64) bool {
   if account1 > this.n || account2 > this.n || this.arr[account1-1] < money {
      return false
   }
   this.arr[account1-1] = this.arr[account1-1] - money
   this.arr[account2-1] = this.arr[account2-1] + money
   return true
}

func (this *Bank) Deposit(account int, money int64) bool {
   if account > this.n {
      return false
   }
   this.arr[account-1] = this.arr[account-1] + money
   return true
}

func (this *Bank) Withdraw(account int, money int64) bool {
   if account > this.n || this.arr[account-1] < money {
      return false
   }
   this.arr[account-1] = this.arr[account-1] - money
   return true
}

总结

Medium题目,简单的模拟题

展开阅读全文

页面更新:2024-05-02

标签:银行   下标   整数   数组   示例   余额   初始化   账户   存款   简易   账号   题目   总数   对象   编号   美元   系统   科技

1 2 3 4 5

上滑加载更多 ↓
推荐阅读:
友情链接:
更多:

本站资料均由网友自行发布提供,仅用于学习交流。如有版权问题,请与我联系,QQ:4156828  

© CopyRight 2020-2024 All Rights Reserved. Powered By 71396.com 闽ICP备11008920号-4
闽公网安备35020302034903号

Top