PAT 甲级
weixin_44572124
这个作者很懒,什么都没留下…
展开
-
PAT 1160 Forever
PAT 1160 ForeverPAT(甲级)2019年秋季考试 (第一题)7-1 Forever (20 分)“Forever number” is a positive integer A with K digits, satisfying the following constrains:the sum of all the digits of A is m;the sum of all the digits of A+1 is n; andthe greatest common divi原创 2020-07-21 14:11:59 · 185 阅读 · 0 评论 -
PAT 1052 Linked List Sorting
PAT 1052 Linked List Sorting对链表进行排序需要注意给的数据中有一些节点不在链表中,如果对全数组排序时需要把它们排到后面(参考其他文章),或者按照本方法把在链表的元素安排到新数组里,然后对新数组排序利用c++11的的std::move右值引用让noder[i]接管node[i]原值,速度会快一点(注意右值引用原变量的值后后不要再使用原变量#include <cstdio>#include <algorithm>#include <utili原创 2020-07-10 21:53:31 · 63 阅读 · 0 评论