python学习实例(4)

#=========================================
#第四章的python程序
#=========================================#=========================================
#4.1 简洁的Python
#=========================================#<程序:Python数组各元素加1>
arr = [0,1,2,3,4]
for e in arr:tmp=e+1print (tmp)#==================================================================================================#=========================================
#4.2 Python内置数据结构
#=========================================#+++++++++++++++++++++++++++++++++++++++++
#4.2.1 Python基本数据类型
#+++++++++++++++++++++++++++++++++++++++++#<程序:产生10-20的随机浮点数>
import random
f = random.uniform(10,20)
print(f)#<程序:产生10-20的随机整数>
import random
i = random.randint(10,20)
print(i)#<程序:布尔类型例子>
b = 100<101
print (b)#+++++++++++++++++++++++++++++++++++++++++
#4.2.2 列表(list)
#+++++++++++++++++++++++++++++++++++++++++#<程序:序列索引>
L=[1,1.3,"2","China",["I","am","another","list"]]
print(L[0])#<程序:序列加法>
L1= [1,1.3]
L2= ["2","China",["I","am","another","list"]]
L = L1 +L2
print(L)#<程序:字符串专用方法调用>
L=[1,1.3,"2","China",["I","am","another","list"]]
L.append("Hello world!")
print(L)#<程序:while循环对列表进行遍历>
L = [1,3,5,7,9,11]
mlen = len(L)
i =0
while(i<mlen):print(L[i]+1)i += 1#<程序:for循环对列表进行遍历>
L = [1,3,5,7,9,11]
for e in L:e+=1print(e)#+++++++++++++++++++++++++++++++++++++++++
#4.2.3 再谈字符串
#+++++++++++++++++++++++++++++++++++++++++#第一种方式
S=input("1. Enter 1,2, , , :")#Enter: 1,2,3,4
L = S.split(sep=',')		#['1','2','3','4']
X=[]
for a in L:X.append(int(a))
print("Use split:", X)#第二种方式
S=input("2. Enter 1,2, , , :")#Enter: 1,2,3,4
L = S.split(sep=',')			#['1','2','3','4']
L= [int(e) for e in L]
print("Use split and embedded for:", L)#+++++++++++++++++++++++++++++++++++++++++
#4.2.4 字典(Dictionary)——类似数据库的结构
#+++++++++++++++++++++++++++++++++++++++++#<程序:统计字符串中各字符出现次数>
mstr = "Hello world, I am using Python to program, it is very easy to implement."
mlist = list(mstr)
mdict = {}
for e in mlist:if mdict.get(e,-1)==-1:	#还没出现过mdict[e]=1else:					#出现过mdict[e]+=1
for key,value in mdict.items():print (key,value)#练习题4.2.13#程序1
d_info1={'XiaoMing':[ 'stu','606866'],'AZhen':[ 'TA','609980']}
print(d_info1['XiaoMing'])
print(d_info1['XiaoMing'][1])#程序2
d_info2={'XiaoMing':{ 'role': 'stu','phone':'606866'},
'AZhen':{ 'role': 'TA','phone':'609980'}}
print(d_info2['XiaoMing'])
print(d_info2['XiaoMing']['phone'])#练习题4.2.14#程序1
di={'fruit':['apple','banana']}
di['fruit'].append('orange')
print(di)#程序2
D={'name':'Python','price':40}
D['price']=70
print(D)
del D['price']
print(D)#程序3
D={'name':'Python','price':40}
print(D.pop('price'))
print(D)#程序4
D={'name':'Python','price':40}
D1={'author':'Dr.Li'}
D.update(D1)
print(D)#==================================================================================================#=========================================
#4.3 Python赋值语句
#=========================================#+++++++++++++++++++++++++++++++++++++++++
#4.3.1 基本赋值语句
#+++++++++++++++++++++++++++++++++++++++++#<程序:基本赋值语句>
x=1; y=2
k=x+y
print(k)#+++++++++++++++++++++++++++++++++++++++++
#4.3.2 序列赋值
#+++++++++++++++++++++++++++++++++++++++++#<程序:序列赋值语句>
a,b=4,5
print(a,b)
a,b=(6,7)
print(a,b)
a,b="AB"
print(a,b)
((a,b),c)=('AB','CD') #嵌套序列赋值
print(a,b,c)#+++++++++++++++++++++++++++++++++++++++++
#4.3.3 扩展序列赋值
#+++++++++++++++++++++++++++++++++++++++++#<程序:扩展序列赋值语句>
i,*j=range(3)
print(i,j)#+++++++++++++++++++++++++++++++++++++++++
#4.3.4 多目标赋值
#+++++++++++++++++++++++++++++++++++++++++#<程序:多目标赋值语句1>
i=j=k=3
print(i,j,k)
i=i+2 #改变i的值,并不会影响到j, k
print(i,j,k)#<程序:多目标赋值语句2>
i=j=[] 	#[]表示空的列表,定义i和j都是空列表,i和j指向同一个空的列表地址
i.append(30)  #向列表i中添加一个元素30,列表j也受到影响
print(i,j)
i=[];j=[]
i.append(30)
print(i,j)#+++++++++++++++++++++++++++++++++++++++++
#4.3.5 增强赋值语句
#+++++++++++++++++++++++++++++++++++++++++#<程序:增强赋值语句1>
i=2
i*=3       #等价于i=i*3
print(i)#<程序:增强赋值语句2>
L=[1,2]; L1=L; L+=[4,5]
print(L,L1)#<程序:增强赋值语句3>
L=[1,2]; L1=L; L=L+[4,5]
print(L,L1)#==================================================================================================#=========================================
#4.4 Python控制结构
#=========================================#+++++++++++++++++++++++++++++++++++++++++
#4.4.1 if语句
#+++++++++++++++++++++++++++++++++++++++++#<程序:if语句实现百分制转等级制>
def if_test(score):if(score>=90):print('Excellent')elif(score>=80):print('Very Good')elif(score>=70):print('Good')elif(score>=60):print('Pass')else:print('Fail')
if_test(88)#<程序:if语句举例—扩展>
def if_test(score):if(score>=90):print('Excellent',end=' ')if(score>=95):print('*')else:print(' ')
if_test(98)#+++++++++++++++++++++++++++++++++++++++++
#4.4.2 While循环语句
#+++++++++++++++++++++++++++++++++++++++++#<程序:while循环实现从大到小输出2*x,0<x<=10 >
x=10
while x>0:print(2*x,end=' ')x=x-1#<程序:while循环实现从大到小输出2*x,x不是3的倍数>
x=10
while x>0:if x%3 == 0:x=x-1continueprint(2*x,end=' ')x=x-1#<程序:while循环实现从大到小输出2*x,x第一次为6的倍数时退出循环>
x=10
while x>0:if x%6 == 0:breakprint(2*x,end=' ')x=x-1#<程序:while循环例子1改进>
i = 1
while True:print(i,'printing')if i==2:breaki=i+1#<程序:判断是否为质数>
b=7
a=b//2
while a>1:if b%a==0:print('b is not prime')breaka=a-1
else:    #没有执行break,则执行elseprint('b is prime')#+++++++++++++++++++++++++++++++++++++++++
#4.4.3 for循环语句
#+++++++++++++++++++++++++++++++++++++++++#<程序:for的目标<target>变量>
i=1
m=[1,2,3,4,5]
def func():x=200for x in m:print(x);print(x);
func ()#<程序:while循环改变列表2>
words=['cat','window', 'defenestrate']
for w in words[:]:if len(w)>6:words.append(w)
print(words)#<程序:使用range遍历列表>
L=['Python','is','strong']
for i in range(len(L)):print(i,L[i],end=' ')#==================================================================================================#=========================================
#4.5 Python函数调用
#=========================================#+++++++++++++++++++++++++++++++++++++++++
#4.5.1 列表做参数
#+++++++++++++++++++++++++++++++++++++++++#<程序:列表的append方法>
def func(L1):L1.append(1)
L=[2]
func(L)
print(L)#<程序:加法(+)合并列表>
def func(L1):x=L1+[1]print(x,L1)
L=[2]
func(L)
print (L)#<程序:列表分片的例子>
def func(L1):x=L1[1:3]print(x,L1)
L=[2,'a',3,'b',4]
func(L)
print(L)#<程序: L=X>
def F0():X=[9,9]   #X是局部变量,这个指针在局部栈上,但是[9,9]在外面heap上。L.append(8)    #L是全局变量
X=[1,2,3]
L=X
F0()
print("X=",X,"L=",L)#<程序: L=X[:]>
def F0():X=[9,9]   #X 这个指针在局部栈上,但是[9,9]在外面heap上。L.append(8)   #L是全局变量
X=[1,2,3]; L=X[:]		#L是X的全新拷贝
F0()		#改变L不会改变X
print("X=",X,"L=",L)#<程序: 返回(return)列表>
def F1():L=[3,2,1]	#L是局部变量,而[3,2,1]内容是在栈的外面,heap上return(L)   # 传回指针指到[3,2,1]。这个[3,2,1]内容不会随F1结束而消失。
L=F1()
print("L=",L)#<程序: L做函数参数传递>
def F2(L):		#参数L是个指针,是存在栈上的局部变量L=[2,1]		#L 指向一个全新的内容,和原来的参数L完全分开了。return(L)
def F3(L):		#参数L是个指针,是存在栈上的局部变量L.append(1)    #L 指向的是原来的全局内容。会改变全局LL[0]=0
L= [3, 2, 1]
L=F2(L);print("L=",L)
F3(L);print("L=",L)#<程序: list为参数的递归函数>
def recursive(L): if L ==[]: return L=L[0:len(L)-1]   # L指向新产生的一个list,和原来的List完全脱钩了print("L=",L) recursive(L) print("L:",L) return 
X=[1,2,3] 
recursive(X) 
print("outside  recursive, X=",X)#练习题4.5.2def recursive_2(L): if L ==[]: return print("L=",L) recursive_2(L[0:len(L)-1]) print("L:",L) return 
X=[1,2,3] 
recursive_2(X) 
print("outside  recursive_2, X=",X)#==================================================================================================#=========================================
#4.6 Python自定义数据结构
#=========================================#+++++++++++++++++++++++++++++++++++++++++
#4.6.2 面向对象基本概念——类(Class)与对象(Object)
#+++++++++++++++++++++++++++++++++++++++++#<程序:自定义学生student类,并将该类实例化>
class student:	 #学生类型:包含成员变量和成员函数def __init__ (self,mname,mnumber):#当新对象object产生时所自动执行的函数self.name = mname				#self代表这个object。名字self.number = mnumber			#ID号码self.Course_Grade = {}			#字典存课程和其分数self.GPA = 0					#平均分数def getInfo(self):print(self.name,self.number)
XiaoMing = student("XiaoMing","1")		
#每一个学生是一个object,参数给__init()__
A_Zhen = student("A_Zhen","2")
XiaoMing.getInfo()
A_Zhen.getInfo()#==================================================================================================#=========================================
#4.7 基于Python面向对象编程实现数据库功能
#=========================================#+++++++++++++++++++++++++++++++++++++++++
#4.7.1 Python面向对象方式实现数据库的学生类
#+++++++++++++++++++++++++++++++++++++++++#<程序:扩展后的Student类>
class student:def __init__ (self,mname,studentID):self.name = mname; self.StuID = studentID;	self.Course_Grade = {};self.Course_ID = []; self.GPA = 0;	self.Credit = 0def selectCourse(self,CourseName,CourseID):self.Course_Grade[CourseID]=0;			#CourseID:0 加入字典self.Course_ID.append(CourseID)			# CourseID 加入列表self.Credit = self.Credit+ CourseDict[CourseID].Credit #总学分数更新def getInfo(self):print("Name:",self.name);print("StudentID",self.StuID);print("Course:")for courseID,grade in self.Course_Grade.items():print(CourseDict[courseID].courseName,grade)print("GPA",self.GPA); 	print("Credit",self.Credit); print("")def TakeExam(self, CourseID):self.Course_Grade[CourseID]=random.randint(50,100)self.calculateGPA()def Grade2GPA(self,grade):if(grade>=90):return 4elif(grade>=80):return 3elif(grade>=70):return 2elif(grade>=60):return 1else:return 0def calculateGPA(self):g = 0;#遍历每一门所修的课程for courseID,grade in self.Course_Grade.items():g = g + self.Grade2GPA(grade)* CourseDict[courseID].Creditself.GPA = round(g/self.Credit,2)#+++++++++++++++++++++++++++++++++++++++++
#4.7.2 Python面向对象方式实现数据库的课程类
#+++++++++++++++++++++++++++++++++++++++++#<程序:课程类>
class Course:def __init__ (self,cid,mname,CourseCredit,FinalDate):self.courseID = cidself.courseName = mnameself.studentID = []self.Credit = CourseCreditself.ExamDate = FinalDatedef SelectThisCourse(self,stuID):	#记录谁修了这门课,在studentID列表里self.studentID.append(stuID)#+++++++++++++++++++++++++++++++++++++++++
#4.7.3 Python创建数据库的学生与课程类组
#+++++++++++++++++++++++++++++++++++++++++#<程序:建立课程信息>
def setupCourse (CourseDict):	#建立CourseList: list of Course objectsCourseDict[1]=Course(1,"Introducation to Computer Science",4,1)CourseDict[2]=Course(2,"Advanced Mathematics",5,2)CourseDict[3]=Course(3,"Python",3,3)CourseDict[4]=Course(4,"College English",4,4)CourseDict[5]=Course(5,"Linear Algebra",3,5)#<程序:建立班级信息>
def setupClass (StudentDict):    #输入一个空列表NameList = ["Aaron","Abraham","Andy","Benson","Bill","Brent","Chris","Daniel","Edward","Evan","Francis","Howard","James","Kenneth","Norma","Ophelia","Pearl","Phoenix","Prima","XiaoMing"] stuid = 1for name in NameList:StudentDict [stuid]=student(name,stuid)     #student对象的字典stuid = stuid + 1#+++++++++++++++++++++++++++++++++++++++++
#4.7.4 Python实例功能模拟
#+++++++++++++++++++++++++++++++++++++++++#<程序:模拟选课>
def SelectCourse (StudentList, CourseList):for stu in StudentList:		#每一个学生修几门课CourseNum = random.randint(3,len(CourseList))		#修CourseNum数量的课#随机选,返回列表CourseIndex = random.sample(range(len(CourseList)), CourseNum)for index in CourseIndex:stu.selectCourse(CourseList[index].courseName,CourseList[index].Credit)CourseList[index].SelectThisCourse(stu.StuID)#<程序:模拟考试>
def ExamSimulation (StudentList, CourseList):for day in range(1,6):	#Simulate the datefor cour in CourseList:if(cour.ExamDate==day):	# Hold the exam of course on that dayfor stuID in cour.studentID:for stu in StudentList:if(stu.StuID == stuID):	#student stuID selected this coursestu.TakeExam(cour.courseID)#<程序:主程序>
import random
CourseDict={}
StudentDict={}
setupCourse(CourseDict)
setupClass(StudentDict)
SelectCourse(list(StudentDict.values()),list(CourseDict.values()))
ExamSimulation(list(StudentDict.values()),list(CourseDict.values()))
for sid,stu in StudentDict.items():stu.getInfo()#==================================================================================================#=========================================
#4.8 有趣的小乌龟——Python之绘图
#=========================================#+++++++++++++++++++++++++++++++++++++++++
#4.8.2 小乌龟绘制基础图形绘制
#+++++++++++++++++++++++++++++++++++++++++#<程序:绘出三条不同的平行线>
from turtle import *
def jumpto(x,y):		#移动小乌龟不绘图up(); goto(x,y); down()
reset()			#置小乌龟到原点处
colorlist = ['red','green','yellow']
for i in range(3):jumpto(-50,50-i*50);width(5*(i+1));color(colorlist[i])   #设置小乌龟属性forward(100)	#绘图
s = Screen(); s.exitonclick()#<程序:绘出边长为50的正方形>
from turtle import *
def jumpto(x,y):up(); goto(x,y); down()
reset()
jumpto(-25,-25)
k=4
for i in range(k):forward(50)left(360/k)
s = Screen(); s.exitonclick()#解法1#<程序:绘出半径为50的圆>
from turtle import *
import math
def jumpto(x,y):up(); goto(x,y); down()
def getStep(r,k):rad = math.radians(90*(1-2/k))return ((2*r)/math.tan(rad))
def drawCircle(x,y,r,k):S=getStep(r,k)speed(10); jumpto(x,y)	for i in range(k):forward(S)left(360/k)
reset()
drawCircle(0,0,50,20)
s = Screen(); s.exitonclick()#解法1#<程序:绘出半径为50的圆>
from turtle import *
circle(50)
s = Screen(); s.exitonclick()#+++++++++++++++++++++++++++++++++++++++++
#4.8.3 小乌龟绘制迷宫
#+++++++++++++++++++++++++++++++++++++++++#<程序:迷宫输入>
m=[[1,1,1,0,1,1,1,1,1,1],[1,0,0,0,0,0,0,0,1,1],[1,0,1,1,1,1,1,0,0,1],[1,0,1,0,0,0,0,1,0,1],[1,0,1,0,1,1,0,0,0,1],[1,0,0,1,1,0,1,0,1,1],[1,1,1,1,0,0,0,0,1,1],[1,0,0,0,0,1,1,1,0,0],[1,0,1,1,0,0,0,0,0,1],[1,1,1,1,1,1,1,1,1,1]]#<程序:迷宫中的墙与通道绘制>
from turtle import *
def jumpto(x,y):up(); goto(x,y); down()
def Access(x,y):jumpto(x,y)for i in range(4):forward(size/6); up(); forward(size/6*4); down();forward(size/6); right(90)
def Wall(x,y,size):color("red"); jumpto(x,y);for i in range(4):forward(size)right(90)goto(x+size,y-size); jumpto(x,y-size); goto(x+size,y)#<程序:小乌龟画迷宫>
reset(); speed('fast')
size=40; startX = -len(m)/2*size; startY = len(m)/2*size
for i in range(0,len(m)):for j in range(0,len(m[i])):if m[i][j]==0:Access(startX+j*size, startY-i*size)else:Wall(startX+j*size, startY-i*size,size)
s = Screen(); s.exitonclick()   #程序练习题4.8.2#<程序:多个圆形的美丽聚合>
from turtle import *
reset()
speed('fast')
IN_TIMES = 40
TIMES = 20
for i in range(TIMES):right(360/TIMES)forward(200/TIMES)  #这一步是做什么用的?for j in range(IN_TIMES):right(360/IN_TIMES)forward (400/IN_TIMES)
write(" Click me to exit", font = ("Courier", 12, "bold") )
s = Screen()
s.exitonclick()

 

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/445551.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

用Python批量生成字幕图片用于视频剪辑

说明 视频剪辑时需要为视频添加字幕&#xff0c;添加字幕方法之一&#xff1a;根据字幕文本文件批量生成透明底只有字幕内容的图片文件&#xff0c;如下图&#xff0c;然后将这些图片文件添加到视频剪辑软件轨道中。 于是用pillow这Python图片工具库执行本次批量生成工作。 …

关于接地:数字地、模拟地、信号地、交流地、直流地、屏蔽地、浮

除了正确进行接地设计、安装,还要正确进行各种不同信号的接地处理。控制系统中&#xff0c;大致有以下几种地线&#xff1a; &#xff08;1&#xff09;数字地&#xff1a;也叫逻辑地&#xff0c;是各种开关量&#xff08;数字量&#xff09;信号的零电位。 &#xff08;2&…

python学习实例(5)

# #5.1 计算思维是什么 ##<程序: 找假币的第一种方法> by Edwin Sha def findcoin_1(L):if len(L) <1:print("Error: coins are too few"); quit()i0while i<len(L):if L[i] < L[i1]: return (i)elif L[i] > L[i1]: return (i1)ii1print("All…

一个用LaTeX写长除法计算过程的示例

源码 \begin{array}{lr} & x1 \\ x1 \!\!\!\!\!\! & \overline{)x^2 2x 1} \\ & \underline{x^2\ \ x\ \ \ \ \ \ \ } \\ & x 1 \\ & \underline{x1} \\ & 0 \end{array}效果 x1x1⁣ ⁣ ⁣ ⁣ ⁣ ⁣)x22x1‾x2x‾x1x1‾0\begin{array}…

AltiumDesigner中PCB如何添加 Logo

AltiumDesigner中PCB如何添加 Logo 转载2015-10-29 00:07:55标签&#xff1a;it文化教育首先用到的画图软件&#xff0c;当然是大家熟悉的Altium Designer了&#xff0c;呵呵&#xff0c;相信很多人都用过这款画图软件吧&#xff08;现在电路设计一直在用&#xff09;&#xff…

python学习实例(6)

# #6.6 文件系统&#xff08;File System&#xff09; ## #6.6.3 Python中的文件操作 ##<程序&#xff1a;读取文件os.py> f open("./Task1.txt",r); fls f.readlines() for line in fls:line line.strip(); print (line) f.close()#<程序&#xff1a;读…

网络视频ts格式文件下载及将其合成单一视频文件

一些网站会将视频分割成n个ts文件。 用猫抓chrome插件&#xff0c;抓取index.m3u8&#xff0c;可得到众多ts文件下载地址。 可用迅雷打包下载ts文件以及index.m3u8文件&#xff0c;但有时会出现下载不了的情况&#xff0c;怀疑是请求报头的问题上。 若迅雷下载不了&#xff…

PCB布局,布线技巧总结

PCB布局 在设计中&#xff0c;布局是一个重要的环节。布局结果的好坏将直接影响布线的效果&#xff0c;因此可以这样认为&#xff0c;合理的布局是PCB设计成功的第一步。 布局的方式分两种&#xff0c;一种是交互式布局&#xff0c;另一种是自动布局&#xff0c;一般是在自动布…

python学习实例(7)

# #第8章 信息安全&#xff08;Information Security&#xff09;的python程序 ## #8.3 措施和技术 ## #8.3.1 密码学 ##非对称加密#<程序&#xff1a;把n分解成p*q> import math n 221 m int(math.ceil(math.sqrt(n))) flag 0 for i in range(2,m1,1):if n % i 0:pr…

什么是TTL电平、CMOS电平、RS232电平

工作中遇到一个关于电平选择的问题,居然给忘记RS232电平的定义了,当时无法反应上来,回来之后查找资料才了解两者之间的区别,视乎两年多的时间,之前非常熟悉的一些常识也开始淡忘,这个可不是一个好的现象.:-),还是把关于三种常见的电平的区别copy到这里.做加深记忆的效果之用.. …

RFI滤波器电路

RFI滤波器电路 最实用解决方案是通过使用一个差分低通滤波器在仪表放大器前提供 RF 衰减滤波器。该滤波器需要完成三项工作&#xff1a;尽可能多地从输入端去除 RF能量&#xff0c;保持每个输入端和地之间的 AC 信号平衡&#xff0c;以及在测量带宽内保持足够高的输入阻抗以避免…

使用Ultra Librarian 生成PCB库文件

第一步&#xff1a;找到对应芯片的CAD文件&#xff0c;以OPA350为例&#xff1a; http://www.ti.com/product/opa350 第二步&#xff1a; 下载上图右边连接的 Ultra Librarian.zip &#xff0c; 然后根据提示&#xff0c;安装。 安装好后打开Ultra Librarian&#xff0c;会出现…

借汉诺塔理解栈与递归

我们先说&#xff0c;在一个函数中&#xff0c;调用另一个函数。 首先&#xff0c;要意识到&#xff0c;函数中的代码和平常所写代码一样&#xff0c;也都是要执行完的&#xff0c;只有执行完代码&#xff0c;或者遇到return&#xff0c;才会停止。 那么&#xff0c;我们在函…

简单迷宫问题

迷宫实验是取自心理学的一个古典实验。在该实验中&#xff0c;把一只老鼠从一个无顶大盒子的门放入&#xff0c;在盒子中设置了许多墙&#xff0c;对行进方向形成了多处阻挡。盒子仅有一个出口&#xff0c;在出口处放置一块奶酪&#xff0c;吸引老鼠在迷宫中寻找道路以到达出口…

qt超强绘图控件qwt - 安装及配置

qwt是一个基于LGPL版权协议的开源项目&#xff0c; 可生成各种统计图。它为具有技术专业背景的程序提供GUI组件和一组实用类&#xff0c;其目标是以基于2D方式的窗体部件来显示数据&#xff0c; 数据源以数值&#xff0c;数组或一组浮点数等方式提供&#xff0c; 输出方式可以是…

BFPRT

在一大堆数中求其前k大或前k小的问题&#xff0c;简称TOP-K问题。而目前解决TOP-K问题最有效的算法即是BFPRT算法&#xff0c;其又称为中位数的中位数算法&#xff0c;该算法由Blum、Floyd、Pratt、Rivest、Tarjan提出&#xff0c;最坏时间复杂度为O(n)O(n)。 读者要会快速排序…

180°舵机的使用步骤

一.步骤 1.首先查看舵机的运行参数&#xff0c;包括工作的电压和电流&#xff0c;转1&#xff08;60&#xff09;需要的脉宽是多少。 2.根据舵机提供的参数&#xff0c;算出需要的PWM的周期和脉宽的范围。 3.通过单片机或者其他数字电路产生相应的PWM波&#xff0c;便可以驱…

Qt开源项目

图像处理&#xff1a; Krita digikam inkscape 编辑器&#xff1a; LiteIDE QDevelper KDeveloper Monkey Studio TeXstudio 绘图&#xff1a; ZeGrapher QtiPlot qcustomplot QWT HotShots Inkscape 三维建模&#xff1a; QCAD FreeCAD OpenModelica LibreCAD 音乐&#xff1a…

使用Python作为计算器

数值 1.python支持基本的数学运算符&#xff0c;而且应用python你可以像写数学公式那样简单明了。 eg: >>> 2 2 4 >>> 50 - 5*6 20 >>> (50 - 5*6) / 4 5.0 >>> 8 / 5 # division always returns a floating point number 1.6 2.除法…

java整体打印二叉树

一个调的很好的打印二叉树的代码。 用空格和^v来表示节点之间的关系。 效果是这样&#xff1a; Binary Tree: v7v v6v ^5^ H4H …