一、冒泡排序 '''冒泡排序'''# coding:utf-8list = [1, 13, 5, 35, 6, 9, 10]s = range(len(list))[::-1]print(s)for i in s: for j in range(i): if list[j] > list[j +1 ...
分类:
编程语言 时间:
2020-03-04 13:02:13
阅读次数:
73
题目描述 打印如下图形输入n(1<=n=<10),打印特殊三角 输入 4 输出 1 2 3 43 5 78 1220 样例输入 Copy 4 n=int(input()) list_s=[] for i in range(1,n+1): list_s.append(i) z=1 for i in r ...
分类:
其他好文 时间:
2020-01-11 20:40:38
阅读次数:
67
n = int(input())H = []H1 = []W = []W1 = []CountTime = 0for i in range(n): list_H = input().split() H.append(int(list_H[0])) H1.append(int(list_H[1]))f ...
分类:
编程语言 时间:
2020-01-08 00:27:03
阅读次数:
131
为了更好的服务 QingCloud 用户,我们推出了『产品速递』栏目,帮助大家梳理青小云家最近上线的新功能和新产品,供大家从中快速选择,得以应用。
PostgreSQL 为了增强产品稳定性和功能,在 PG9.6-高可用版-V1.1.1、PG10-高可用版-V1.1.1 版本中新增了许多重要功能特性,并持续增强产品稳定性,具体情况如下:
1. 支持读写分离功能。
2. 支持最多
分类:
其他好文 时间:
2019-12-18 17:43:24
阅读次数:
142
How To Convert A Partitioned Table To A Non-Partitioned Table Using DataPump In 11g (Doc ID 1276049.1) APPLIES TO: Oracle Database Exadata Cloud Machi ...
分类:
其他好文 时间:
2019-12-15 12:25:09
阅读次数:
82
超详细的PostgreSQL体系结构总结,值得收藏 原创 波波说运维 2019-07-26 00:03:00 概述 今天本文主要从日志文件、参数文件、控制文件、数据文件、redo日志(WAL)、后台进程这六个方面来介绍一下PostgreSQL的架构。 架构 PostgreSQL的主要架构如下: 一、 ...
分类:
数据库 时间:
2019-10-09 09:34:04
阅读次数:
329
import randomlist1 = [random.randint(-10,10) for _ in range(10)]print('随机生成的十个在-10到10之间的整数列表:',list1)outList1 = list(filter(lambda x: x>=0,list1))#fil... ...
分类:
其他好文 时间:
2019-10-05 10:27:19
阅读次数:
109
1. 前言 上一篇文章介绍了使用Resizer实现Expander简单的动画效果,运行效果也还好,不过只有展开/折叠而缺少了淡入/淡出的动画(毕竟Resizer模仿Expander只是附带的功能)。这篇继续Measure的话题,自定义了一个带有动画的ExtendedExpander。 2. Exte ...
#冒泡排序list1=[2,4,5,6,7,8,9,11,30,35,38,41,42] def bubble_sort(list): for i in range(len(list)-1): for j in range(len(list)-1-i): if list[j]>list[j+1]: ... ...
分类:
编程语言 时间:
2019-06-29 00:48:20
阅读次数:
113
1.下载对应数据库版本及操作系统的pg_rman源码 https://github.com/ossc-db/pg_rman/releases 本例使用的是centos6.9+pg10,因此下载的是pg_rman-1.3.7-pg10.tar.gz 源码是与操作系统无关的,在编译安装的时候会适配对应的 ...
分类:
其他好文 时间:
2019-06-28 16:38:33
阅读次数:
225