摘要: 1065 A+B and C (64bit) (20 分) Given three integers A, B and C in [−263,263], you are supposed to tell whether A+B>C. Input Specification: The first li 阅读全文
posted @ 2021-07-22 23:05 shiff 阅读(25) 评论(0) 推荐(0) 编辑
摘要: 1046 Shortest Distance (20 分) The task is really simple: given N exits on a highway which forms a simple cycle, you are supposed to tell the shortest 阅读全文
posted @ 2021-07-22 21:35 shiff 阅读(37) 评论(0) 推荐(0) 编辑
摘要: c++头文件之Vector 首先,我们需要该清楚Vector的定义: C++标准库提供了被封装的动态数组——Vector。大体上讲,就是更容易上手的动态数组.让我们看看Vector的优缺点. 优点: 1). Vector可以存放任意类型的数据 2). 容量可以自动扩展 3). 初始化形式简单,多样 阅读全文
posted @ 2021-07-22 21:28 shiff 阅读(1630) 评论(0) 推荐(0) 编辑
摘要: 单链表 每个结点除了存档元素外,还要存储下一个结点的指针 优点:不要求大片连续空间,改变容量方便 缺点:不可随机存取 用代码定义一个单链表 struct LNode{ //定义单链表结点类型 ElemType data; //每个结点存放一个数据元素(数据域) struct LNode *next; 阅读全文
posted @ 2021-07-22 16:38 shiff 阅读(227) 评论(0) 推荐(0) 编辑