摘要: 采用链表实现大数运算 C++分为头文件程序和主体cpp函数 头文件函数如下: #include<iostream> using namespace std; template<class T> struct Node { T data; struct Node<T>*prior; struct No 阅读全文
posted @ 2022-05-23 20:53 Gustavo09 阅读(152) 评论(0) 推荐(0)