上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 72 下一页

2019年10月3日

turtle1

摘要: #画风车 from turtle import * pensize(2) for i in range(4): seth(360-i*90) fd(150) rt(90) circle(-150,45) rt(90) fd(150) #画蛇 from turtle import * pensize(25) pencolor("p... 阅读全文

posted @ 2019-10-03 12:05 cltt 阅读(199) 评论(0) 推荐(0) 编辑

2019年10月1日

字符串1

摘要: 温度的刻画有两个不同体系:摄氏度(Celsius)和华氏度(Fahrenheit)。‪‬‪‬‪‬‪‬‪‬‮‬‪‬‭‬‪‬‪‬‪‬‪‬‪‬‮‬‪‬‮‬‪‬‪‬‪‬‪‬‪‬‮‬‪‬‮‬‪‬‪‬‪‬‪‬‪‬‮‬‭‬‫‬‪‬‪‬‪‬‪‬‪‬‮‬‪‬‫‬‪‬‪‬‪‬‪‬‪‬‮‬‭‬‫‬ 请编写程序将用户输入华 阅读全文

posted @ 2019-10-01 16:41 cltt 阅读(203) 评论(0) 推荐(0) 编辑

2019年9月30日

基础操作

摘要: python 诞生于1991年python 语言的缩进只要统一即可且强制使用IPO模型:Input Process Output 在IDLE 运行python代码 1.直接运算小的代码 2.新建-->写好代码-->run -->run module 就会在IDLE (shell)运行 ctrl +C 阅读全文

posted @ 2019-09-30 22:13 cltt 阅读(200) 评论(0) 推荐(1) 编辑

2019年9月19日

链表去重

摘要: L2-002 链表去重 (25 分) 给定一个带整数键值的链表 L,你需要把其中绝对值重复的键值结点删掉。即对每个键值 K,只有第一个绝对值等于 K 的结点被保留。同时,所有被删除的结点须被保存在另一个链表上。例如给定 L 为 21→-15→-15→-7→15,你需要输出去重后的链表 21→-15→-7,还有被删除的链表 -15→15。 输入格式: 输入在第一行给出 L 的第一个结点的地址和一个正 阅读全文

posted @ 2019-09-19 21:07 cltt 阅读(1605) 评论(0) 推荐(0) 编辑

PAT 1093

摘要: The string APPAPT contains two PAT's as substrings. The first one is formed by the 2nd, the 4th, and the 6th characters, and the second one is formed 阅读全文

posted @ 2019-09-19 20:12 cltt 阅读(115) 评论(0) 推荐(0) 编辑

求树的某一层的节点最多

摘要: #include using namespace std; #define N 110 #define P pair int n,m; int lev[N],head[N],cnt=0; struct Node{ int fr,to,next; Node(){} Node(int fr,int to,int next):fr(fr),to(to),next(ne... 阅读全文

posted @ 2019-09-19 16:48 cltt 阅读(309) 评论(0) 推荐(0) 编辑

快排 PAT 1101

摘要: 1101 Quick Sort (25 分) 1101 Quick Sort (25 分) 1101 Quick Sort (25 分) There is a classical process named partition in the famous quick sort algorithm. 阅读全文

posted @ 2019-09-19 15:18 cltt 阅读(152) 评论(0) 推荐(0) 编辑

PAT 1098

摘要: 1098 Insertion or Heap Sort (25 分) 1098 Insertion or Heap Sort (25 分) 1098 Insertion or Heap Sort (25 分) According to Wikipedia: Insertion sort iterat 阅读全文

posted @ 2019-09-19 11:12 cltt 阅读(175) 评论(0) 推荐(0) 编辑

2019年9月18日

PAt 1099

摘要: 1099 Build A Binary Search Tree (30 分) 1099 Build A Binary Search Tree (30 分) 1099 Build A Binary Search Tree (30 分) A Binary Search Tree (BST) is rec 阅读全文

posted @ 2019-09-18 22:57 cltt 阅读(136) 评论(0) 推荐(0) 编辑

多项式求和

摘要: This time, you are supposed to find A+B where A and B are two polynomials. Input Specification: Each input file contains one test case. Each case occu 阅读全文

posted @ 2019-09-18 21:02 cltt 阅读(527) 评论(0) 推荐(0) 编辑

上一页 1 ··· 39 40 41 42 43 44 45 46 47 ··· 72 下一页

导航