之前的博客已经介绍过各种排序算法的基本介绍,详情见: "Python数据结构应用5——排序(Sorting)" 。由于找工作需要,这里总结了一下这些排序算法的区别与选择依据。 影响排序的因素有很多,平均时间复杂度低的算法并不一定就是最优的。相反,有时平均时间复杂度高的算法可能更适合某些特殊情况。一般 ...
分类:
编程语言 时间:
2018-10-04 09:10:41
阅读次数:
117
题目链接:https://nanti.jisuanke.com/t/31721 题意:一个孩子吃饭,有meat, fish 和 chocolate 三种食物可以选。要求连续三顿饭食物不能完全相同,鱼和肉的前一顿和后一顿不能都是巧克力,巧克力的左右两边不能同时出现鱼和肉。 思路:分九种情况,求出递推式 ...
分类:
其他好文 时间:
2018-09-20 21:52:18
阅读次数:
184
1.拖拽和释放定义: 拖拽:Drag; 释放:Drop; 2.源对象和目标对象: 3.相关API: ondragstart:源对象开始被拖动 ondrag:源对象被拖动的过程中 ondragend:源对象被拖动结束 ondragenter:目标对象被源对象拖动进入 ondragover:目标对象被源 ...
God Water likes to eat meat, fish and chocolate very much, but unfortunately, the doctor tells him that some sequence of eating will make them poisono ...
分类:
其他好文 时间:
2018-09-17 11:45:18
阅读次数:
307
God Water likes to eat meat, fish and chocolate very much, but unfortunately, the doctor tells him that some sequence of eating will make them poisono ...
分类:
其他好文 时间:
2018-09-15 20:08:10
阅读次数:
239
God Water likes to eat meat, fish and chocolate very much, but unfortunately, the doctor tells him that some sequence of eating will make them poisono ...
分类:
其他好文 时间:
2018-09-15 18:16:37
阅读次数:
218
一、C语言入门的基本学习方法 《C语言》的内容很丰富,有的部分涉及到的细节很多,如硬件知识和数据结构知识等,自学时不可能面面俱到,否则必然会顾此失彼,反而抓不住主要矛盾。笔者认为对初学C语言的考生,开始不必在每一个细节上过于死抠,而应当把主要精力放在最基本、最常用的那些部份,待有一定的基础后再深入到 ...
分类:
编程语言 时间:
2018-09-06 21:30:06
阅读次数:
165
1. 查找流中的最大值和最小值: 2. 汇总: 3. 连接字符串: 4. 广义的归约汇总: ...
分类:
其他好文 时间:
2018-09-06 02:32:02
阅读次数:
189
一、继承 1、语法:class DerivedClassName(BaseClassName):子类继承父类 2、如果子类中定义的方法和属性和父类的属性和方法名字一样,则会自动覆盖父类对应的方法和属性 import random as r class Fish: def __init__(self) ...
分类:
编程语言 时间:
2018-08-28 23:49:22
阅读次数:
232
本文摘自复旦大学出版社《中学英语语法(高中第二版)》,作者魏孟勋 who(m),whose,what,which 成为疑问代词(Interrogative Pronoun),用来构成特殊疑问句。 1、who,whatwho用于询问姓名、身份或关系,what用于询问职业。例如:-Who is the ...
分类:
其他好文 时间:
2018-08-27 21:30:35
阅读次数:
202