pat考试

圣保罗的大教堂8 天前
pat考试
1097 Deduplication on a Linked List (25)Given a singly linked list L with integer keys, you are supposed to remove the nodes with duplicated absolute values of the keys. That is, for each value K, only the first node of which the value or absolute value of its key equals K will be kept. At the
圣保罗的大教堂12 天前
pat考试
1089 Insert or Merge (25)According to Wikipedia:Insertion sort iterates, consuming one input element each repetition, and growing a sorted output list. Each iteration, insertion sort removes one element from the input data, finds the location it belongs within the sorted list, an
圣保罗的大教堂15 天前
pat考试
1081 Rational Sum (20)Given N rational numbers in the form numerator/denominator, you are supposed to calculate their sum.
圣保罗的大教堂15 天前
pat考试
1083 List Grades (25)Given a list of N student records with name, ID and grade. You are supposed to sort the records with respect to the grade in non-increasing order, and output those student records of which the grades are in a given interval.
圣保罗的大教堂19 天前
pat考试
1074 Reversing Linked List (25)Given a constant K and a singly linked list L, you are supposed to reverse the links of every K elements on L. For example, given L being 1→2→3→4→5→6, if K=3, then you must output 3→2→1→6→5→4; if K=4, you must output 4→3→2→1→5→6.
圣保罗的大教堂1 个月前
pat考试
1052 Linked List Sorting (25)A linked list consists of a series of structures, which are not necessarily adjacent in memory. We assume that each structure contains an integer key and a Next pointer to the next structure. Now given a linked list, you are supposed to sort the structure
圣保罗的大教堂1 个月前
pat考试
1047 Student List for Course (25)Zhejiang University has 40,000 students and provides 2,500 courses. Now given the registered course list of each student, you are supposed to output the student name lists of all the courses.
圣保罗的大教堂2 个月前
pat考试
1028 List Sorting (25)Excel can sort records according to any column. Now you are supposed to imitate this function.
哈哈,柳暗花明2 个月前
pat考试
软件设计师笔记-数据结构数据元素的集合及元素间的相互关系和构造方法。每个节点有两个指针,分别指出直接前驱和直接后继。尾节点指针指向第一个节点。
绯樱殇雪2 个月前
c++·pat考试
编程题 7-29 删除字符串中的子串【PAT】编程练习题目集目录输入 2 2 2 个字符串 S 1 S1 S1 和 S 2 S2 S2,要求删除字符串 S 1 S1 S1 中出现的所有子串 S 2 S2 S2,即结果字符串中不能包含 S 2 S2 S2。
绯樱殇雪3 个月前
c++·pat考试
编程题 7-14 求整数段和【PAT】编程练习题目集目录给定两个整数 A A A 和 B B B,输出从 A A A 到 B B B 的所有整数以及这些数的和。
C盘清理3 个月前
考研·倒计时·pat考试·高考·倒计时软件·日期倒计时
2025考研倒计时 考研时间公布了 你准备好复习冲刺了吗?2025考研倒计时 考研时间公布了 你准备好复习冲刺了吗?今年的考研时间终于公布了:正式报名时间2024.10.15-2024.10.28,初试时间12月21日,相信很多学子们已经做好冲刺的准备了。
绯樱殇雪3 个月前
c·pat考试
函数题 6-8 简单阶乘计算【PAT】编程练习题目集目录要求实现一个计算非负整数阶乘的简单函数。int Factorial( const int N );
Moliay6 个月前
c语言·c++·算法·pat考试·简单模拟
1117 数字之王or
zhang98800006 个月前
考研·面试·职场和发展·系统架构·运维开发·pat考试·学习方法
2024-2025最新软考系统架构设计师的复习资料教材,解决如何快速高效通过该考试,试题的重点和难点在哪里?案例分析题和论文题的要点和踩坑点分析系统架构设计师考试是软考高级资格考试之一,旨在考察考生在系统架构设计领域的综合能力和专业知识。通过该考试可以获得系统架构设计师资格认证,对职业发展有重要意义。本教材将详细介绍该考试的复习方法、重点知识点和考试策略,帮助考生有效备考并顺利通过考试。
Moliay6 个月前
笔记·算法·pat考试·简单模拟
1052 卖个萌(测试点1,2)
Moliay7 个月前
c语言·c++·算法·c·pat考试
1123 舍入(测试点2,6,7,8)
Y_3_77 个月前
java·程序人生·算法·leetcode·蓝桥杯·排序算法·pat考试
【分治算法 7】翻转对(hard)(每日一题)分治算法(Divide and Conquer),顾名思义,将一个大问题分成多个小问题,然后分别解决这些小问题,最后将它们的解合并起来得到整体的解。这个算法的核心思想是将问题分割成更小的、相同结构的子问题,然后将子问题的解合并成原问题的解。
小王不会写code7 个月前
数据结构·算法·pat考试·期末考试
数据结构判断题(期末模拟)1.算法分析的两个主要方面是时间复杂度和空间复杂度的分析。 T 2.算法可以没有输入,但是必须有输出。 T 3.时间复杂度是根据算法写成的程序在执行时耗费时间的长度,往往与输入数据的规模有关。 T 4.空间复杂度是根据算法写成的程序在执行时占用存储单元的长度,往往与输入数据的规模有关。 T 5.递归程序往往简洁易懂,但占用较大空间。递归层数过大会造成系统堆栈溢出。 T 6.对于顺序存储的长度为N的线性表,访问结点和增加结点的时间复杂度分别对应为O(1)和O(N)。 T 7.若某线性表最常用的操作是存取任一
Moliay7 个月前
c++·算法·pat考试·简单模拟
1066 图像过滤or