[小工程]大数类
Posted qdscwyy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[小工程]大数类相关的知识,希望对你有一定的参考价值。
突然发现自己从来没有写过正儿八经的大数.于是在退役之前写一把.
希望能在用到大数时替代掉慢死的Python.
项目地址Github.com/Frankaiyou/LargeIntegar
Completed
- [x] Input;
- [x] Output;
- [x] Compare size;
- [x] Integar Addition;
- [x] Integar substruction;
ToDoList
- [ ] Fix the memory assignation when addition or substruction;
- [ ] Fix the Output that appear Prefix zero;
- [ ] Fix the Compare;
- [ ] Multiplicaion;
- [ ] division;
- [ ] Manage the memory;
实现思路是用一段连续的int32
来表示整段数字, 每个int32
只用4位, 为的是方便乘法操作.
以上是关于[小工程]大数类的主要内容,如果未能解决你的问题,请参考以下文章