P

Python 数据结构与算法(en) 文档

Data Structures and Algorithms with Object-Oriented Design Patterns in Python。This book presents material identified in the Computing Curricula 1991 report of the ACM/IEEE-CS Joint Curriculum Task Force[47]. The book specifically addresses the following knowledge units: AL1: Basic Data structures, AL2: Abstract Data Types, AL3: Recursive Algorithms, AL4: Complexity Analysis, AL6: Sorting and Searching, and AL8: Problem-Solving Strategies. The breadth and depth of coverage is typical of what should appear in the second or third year of an undergraduate program in computer science/computer engineering.

mx234 2015-08-26   3345   0
P

Python 数据结构与算法 文档

This book is about the fundamentals of data structures and algorithms--the basic elements from which large and complex software artifacts are built. To develop a solid understanding of a data structure requires three things: First, you must learn how the information is arranged in the memory of the computer. Second, you must become familiar with the algorithms for manipulating the information contained in the data structure. And third, you must understand the performance characteristics of the data structure so that when called upon to select a suitable data structure for a particular application, you are able to make an appropriate decision. <br> This book also illustrates object-oriented design and it promotes the use of common, object-oriented design patterns. The algorithms and data structures in the book are presented in the Python programming language. Virtually all the data structures are presented in the context of a single class hierarchy. This commitment to a single design allows the programs presented in the later chapters to build upon the programs presented in the earlier chapters.

gneg 2015-07-22   251   0
P59

  Mod_python 3.2.8中文手册 文档

Mod_python3.2.8中文手册第一章简介1.1性能使用mod_python的主要优势在于比传统CGI更高的性能。一个测试,使用在Pentium1.2GHz的机器上运行RedHatLinux7.3。使用4种类型的脚本,基于标准的CGI导入模块(以典型的PythonCGI脚本开始),然后输出'Hello!',测试10000次请求作为基准。标准CGI:23次请求/秒mod_pythonCGI处理器:385次请求/秒mod_python发布处理器:476次请求/秒mod_python处理器:1203次请求/秒1.2可移植性apache是按照阶段处理请求的(比如:读取请求、处理请求头、检查存取等)。这些阶段可以分别用处理器调用的函数来实现。传统上,使用C语言编写处理器模块。

x4e2 2015-07-16   2720   0
P

Python v2.4 中文手册 文档

这个手册介绍了一些 Python 语言及其系统的基本知识与概念。这有助于读者对 Python 有一个基本的认识,当然所有的例子都已包括在文中,所以这本手册很适合离线阅读。 <br> Python 是一种容易学习的强大语言。它包括了高效的高级数据结构,提供了一个简单但很有效的方式进行面向对象编程。Python 优雅的语法,动态类型,以及它天然的解释能力,使其成为了大多数平台上应用于各领域理想的脚本语言以及开发环境。 Python 解释器及其扩展标准库的源码和编译版本可以从 Python 的 Web 站点, http://www.python.org/, 及其所有镜像站上免费获得,并且可以自由发布。该站点上也提供了 Python 的一些第三方模块,程序,工具,以及附加的文档。

x4e2 2015-07-16   1719   0
P11

  python做get和post请求 文档

上海大熊HTTP请求HTTP协议(HyperTextTransferProtocol,超文本传输协议)是用于从WWW服务器传输超文本到本地浏览器的传输协议。HTTP/1.1 当前版本。持久连接被默认采用,并能很好地配合代理服务器工作。还支持以管道方式同时发送多个请求,以便降低线路负载,提高传输速度。HTTP/2.0 Python我的环境服务端:GO语言1.4 Python:2.7.10数据库:MYSQL5.6HTTP请求GET通过请求URI得到资源POST用于添加新的内容PUT用于修改某个内容DELETE,删除某个内容实例HttplibUrllib2加密对称加密非对称加密对称加密采用单钥密码系统的加密方法,同一个密钥可以同时用作信息的加密和解密,这种加密方法称为对称加密,也称为单密钥加密。DES、3DES、TDEA、Blowfish、RC2、RC4、RC5、IDEA、SKIPJACK、AES等。非对称加密非对称加密算法需要两个密钥来进行加密和解密,这两个秘钥是公开密钥(publickey,简称公钥)和私有密钥(privatekey,简称私钥)。

diaojun 2015-06-23   1266   0
P10

  python web开发领域经验 前豆瓣技术总监清风 文档

我之前在豆瓣工作,大家一般都叫我“清风”,豆瓣一般都用网名。我在豆瓣差不多工作了五年,走的时候是豆瓣的技术总监。现在在创业,这次演讲因为跟MSUP的人很熟,本来没有太想来,因为创业了,准备收山了。今天真的是收山之讲,以后不能总出来讲了,因为自己也创业了。我自己的项目其实也用phython做很多事,我用phython差不多用了快十年。豆瓣大家知道一直用phython做的网站,所以我今天大概跟大家分享豆瓣是怎么用phython的,先泛泛说一下phython都有哪些,我们也可以用提问的方式更多的了解phython。 

n5em 2015-06-05   1904   0
P6

  tkinter教程之event篇(2) 文档

'''Tkinter教程之Event篇(2)''''''5.测试离开(Leave)事件'''#-*-coding:cp936-*-#测试鼠标释放事件

2269349166 2015-05-07   563   0
P4

  tkinter教程之grid篇 文档

'''Tkinter教程之Grid篇'''#Tkinter参考中最推荐使用的一个布局器。实现机制是将Widget逻辑上分割成表格,在指定的位置放置想要的Widget就可以了。

2269349166 2015-05-07   2523   0
P3

  tkinter教程之entry篇 文档

上面的代码目的是创建一个Entry对象,并在Entry上显示'inputyourtexthere',运行此代码,并没有看到文本的显示,由此可知与Lable和Button不同,Entry的text属性不可以设置Entry的文本'''2.在Entry中设定初始值,使用textvariable将变量与Entry绑

2269349166 2015-05-07   1662   0
P7

  tkinter教程之canvas篇(4) 文档

Tkinter教程之Canvas(4)

2269349166 2015-05-07   517   0
P4

  tkinter教程之event篇(1) 文档

'''Tkinter教程之Event篇(1)'''#事件的使用方法

2269349166 2015-05-07   1833   0
P4

  tkinter教程之event篇(3) 文档

'''Tkinter教程之Event篇(3)''''''11.两个事件同时绑定到一个控件'''#将两个事件绑定为同一个组件#-*-coding:cp936-*-#为root绑定两个事件fromTkinterimport*root=Tk()#Key事件处理函数defprintEvent(event):  print'<Key>',event.keycode#Return事件处理函数

2269349166 2015-05-07   1687   0
P5

  tkinter教程之canvas篇(3) 文档

'''Tkinter教程之Canvas篇(3)''''''16.移动item'''#-*-coding:cp936-*-#move指定x,y在偏移量fromTkinterimport*root=Tk()#创建一个Canvas,设置其背景色为白色cv=Canvas(root,bg='white')#创建两个同样的rectangle,比较移动前后的不同

2269349166 2015-05-07   2383   0
P2

  tkinter教程之panedwindow 文档

'''Tkinter教程之PanedWindow'''#PaneWindow(面板)为一gm,用来管理子Widget'''1

2269349166 2015-05-07   4299   0
P5

  tkinter教程之optionmenu篇 文档

'''Tkinter教程之OptionMenu篇'''#OptionMenu为可选菜单,与Combox功能类似。

2269349166 2015-05-07   561   0
P4

  tkinter教程之grid篇 文档

'''Tkinter教程之Grid篇'''#Tkinter参考中最推荐使用的一个布局器。实现机制是将Widget逻辑上分割成表格,在指定的位置放置想要的Widget就可以了。

2269349166 2015-05-07   3148   0
P4

  tkinter教程之canvas篇(1) 文档

提供可以用来进行绘图的Container,支持基本的几何元素,使用Canvas进行绘图时,所有的操作都是通过Canvas,不是通过它的元素#元素的表示可以使用handle或tag。

2269349166 2015-05-07   2238   0
P2

  tkinter教程之menubutton篇 文档

'''Tkinter教程之Menubutton篇''''''这是一个过时了的控件,从Tk8.0开始将不再使用这个控件,取而代之的是Menu,这里介绍它是为了兼容以前版本的Tk,能够知道有这个东东就可以了''''''1.介绍一下Menubutton的常用方法,可以看到与Menu的使用方法基本相同。

2269349166 2015-05-07   2670   0
P2

  tkinter教程之menu篇 文档

#Message也是用来显示文本的,用法与Label基本一样'''1..创建一个简单的

2269349166 2015-05-07   2322   0
P4

  tkinter教程之font篇 文档

'''Tkinter教程之Font篇'''#Tkinter中其它常用的一些功能'''1.字体使用'''#-*-coding:cp936-*-#改变组件的显示字体

2269349166 2015-05-07   902   0
1 2 3 4 5 6 7 8 9 10

关键词

最新上传

热门文档