C
文章平均质量分 80
BeToBe_
?????
展开
-
求某个范围内的所有素数(内含埃氏筛法
Description 求小于n的所有素数,按照每行10个显示出来。 Input 输入整数n(nOutput 每行10个依次输出n以内的所有素数。如果一行有10个素数,每个素数后面都有一个空格,包括每行最后一个素数。 Sample Input 100 Sample Output 2 3 5 7 11 13 17 19 23 29 31 37 41 43 47原创 2017-07-10 22:51:15 · 1357 阅读 · 0 评论 -
士兵队列训练问题
士兵队列训练问题Time Limit : 2000/1000ms (Java/Other) Memory Limit : 65536/32768K (Java/Other)Total Submission(s) : Accepted Submission(s) : Problem Description某部队进行新兵队列训练,将新兵从一开始按顺序依次编号,并排成一行横队,训练的规则如下:...原创 2018-03-29 20:46:03 · 994 阅读 · 0 评论 -
Polish notation
Polish notationReverse Polish notation (RPN) is a method for representing expressions in which the operator symbol is placed after the arguments being operated on. DescriptionPolish notation, in which...原创 2018-03-25 16:51:37 · 311 阅读 · 0 评论 -
What day is it
DescriptionToday is Saturday, 17th Nov,2007. Now, if i tell you a date, can you tell me what day it is ?InputThere are multiply cases.One line is one case.There are three integers, year(0<year<1...原创 2018-05-15 17:34:00 · 361 阅读 · 0 评论 -
What Day Is It?
What Day Is It?Time Limit: 2 Seconds Memory Limit: 65536 KBThe calendar now in use evolved from the Romans. Julius Caesar codified a calendar system that came to be known as the Julian calendar. ...原创 2018-05-15 17:34:10 · 868 阅读 · 0 评论 -
Calendar
CalendarTime Limit: 1000 ms / Memory Limit: 30000 kbDescriptionA calendar is a system for measuring time, from hours and minutes, to months and days, and finally to years and centuries. The terms of h...原创 2018-05-15 17:34:22 · 253 阅读 · 0 评论 -
反转数
Adding Reversed NumbersTime Limit: 1000 ms / Memory Limit: 10000 kbDescriptionThe Antique Comedians of Malidinesia prefer comedies to tragedies. Unfortunately, most of the ancient plays are tragedies....原创 2018-04-07 13:53:20 · 667 阅读 · 0 评论 -
数组元素的区间删除
6-3 数组元素的区间删除(15 分)给定一个顺序存储的线性表,请设计一个函数删除所有值大于min而且小于max的元素。删除后表中剩余元素保持顺序存储,并且相对位置不能改变。函数接口定义:int Delete( int A[], int L, int minA, int maxA );其中A是整型数组,存储原始线性表的元素;L是表长,即A中元素的个数;minA和maxA分别为待删除元素的值域的下...原创 2018-05-26 09:11:38 · 7342 阅读 · 2 评论 -
冒泡排序
冒泡排序(10 分)编程实现冒泡排序函数。void bubbleSort(int arr[], int n);。其中arr存放待排序的数据,n为数组长度(1≤n≤1000)。函数接口定义如下:/* 对长度为n的数组arr执行冒泡排序 */void bubbleSort(int arr[], int n);请实现bubbleSort函数,使排序后的数据从小到大排列。裁判测试程序样例:#incl...原创 2018-05-26 09:13:00 · 7039 阅读 · 0 评论 -
两个有序链表序列的合并
两个有序链表序列的合并已知两个非降序链表序列S1与S2,设计函数构造出S1与S2的并集新非降序链表S3。输入格式:输入分两行,分别在每行给出由若干个正整数构成的非降序序列,用−1表示序列的结尾(−1不属于这个序列)。数字用空格间隔。输出格式:在一行中输出合并后新的非降序链表,数字间用空格分开,结尾不能有多余空格;若新链表为空,输出NULL。输入样例:1 3 5 -12 4 6 8 10 -1...原创 2018-05-26 10:17:08 · 1882 阅读 · 0 评论 -
两个有序序列的中位数(30 分)
已知有两个等长的非降序序列S1, S2, 设计函数求S1与S2并集的中位数。有序序列A0,A1,⋯,AN−1的中位数指A(N−1)/2的值,即第⌊(N+1)/2⌋个数(A0为第1个数)。输入格式:输入分三行。第一行给出序列的公共长度N(0<N≤100000),随后每行输入一个序列的信息,即N个非降序排列的整数。数字用空格间隔。输出格式:在一行中输出两个输入序列的...原创 2018-05-26 20:25:57 · 3769 阅读 · 0 评论 -
数组循环左移
数组循环左移(20 分)本题要求实现一个对数组进行循环左移的简单函数:一个数组a中存有n(>0)个整数,在不允许使用另外数组的前提下,将每个整数循环向左移m(≥0)个位置,即将a中的数据由(a0a1⋯an−1)变换为(am⋯an−1a0a1⋯am−1)(最前面的m个数循环移至最后面的m个位置)。如果还需要考虑程序移动数据的次数尽量少,要如何设计...原创 2018-05-26 22:40:07 · 1092 阅读 · 1 评论 -
zhx's contest
Time Limit: 1000 ms / MemoryLimit: 65536 kbDescriptionAs one of the most powerfulbrushes, zhx is required to give his juniors $n$ problems.zhx thinks the $i^{th}$ problem's difficulty is $i$.原创 2017-07-10 21:27:55 · 336 阅读 · 0 评论 -
Tic-tac-toe
DescriptionIn the game of tic-tac-toe, two players take turns marking squares of an initially empty 3 × 3 grid with either X’s or O’s. The first player always marks squares using X’s, whereas the seco...原创 2018-05-28 21:58:01 · 20605 阅读 · 0 评论