摘要: 1 #include 2 using namespace std; 3 // 利用模板函数计算一个表达式 4 template 5 Type Abc(Type a,Type b,Type c) 6 { 7 return a+b+c; 8 } 9 // 利用引用参数指针计算一个表达式10 t... 阅读全文
posted @ 2014-12-18 17:39 志者之梦 阅读(568) 评论(0) 推荐(0) 编辑
摘要: 下面以一个简单程序演示一下函数模板的使用: 1 #include 2 using namespace std; 3 template 4 Type Abc(Type a,Type b,Type c) 5 { 6 return a+b+c; 7 } 8 int main() 9 {10 ... 阅读全文
posted @ 2014-12-18 12:48 志者之梦 阅读(4486) 评论(0) 推荐(0) 编辑
摘要: 模板类以这样的代码开头:templateclass看作是变量的类型名,该变量接受类型作为其值,把Type看作是该变量的名称;将模板信息放在一个头文件中,建立stacktp.h 1 #ifndef STACKTP_H_ 2 #define STACKTP_H_ 3 // 建立模板 4 5 templ... 阅读全文
posted @ 2014-12-18 09:53 志者之梦 阅读(18910) 评论(2) 推荐(0) 编辑
摘要: shuffle()方法将序列的所有元素随机排序。下面是语法:1 import random2 3 random.shuffle (lst )lst可以是序列或者元组; 1 >>> import random; 2 >>> indexList=[1,2,4,5,8,6]; 3 >>> indexLis... 阅读全文
posted @ 2014-12-16 23:02 志者之梦 阅读(8336) 评论(0) 推荐(1) 编辑
摘要: 1 >>> from tkinter import *;2 >>> root=Tk()3 >>> myLabel=Label(root,text="Hello world!");4 >>> myLabel.grid()5 >>> root.mainloop()先使用from tkinter impo... 阅读全文
posted @ 2014-12-16 15:34 志者之梦 阅读(857) 评论(0) 推荐(0) 编辑
摘要: 1 # 12-1 FP树的类定义 2 class treeNode: 3 def _init_(self,nameValue,numOccur,parentNode): 4 self.name=nameValue; # 节点的名字 5 self.count=... 阅读全文
posted @ 2014-12-12 18:01 志者之梦 阅读(3043) 评论(0) 推荐(0) 编辑
摘要: 1 >>> a={1:'a',2:'b'}2 >>> 1 in a3 True4 >>> 'a' in a5 False6 >>> 2 in a7 True8 >>> 即可以判断某个键是否存在于字典中;1 >>> a.has_key(1)2 Traceback (most recent call l... 阅读全文
posted @ 2014-12-11 11:56 志者之梦 阅读(1103) 评论(0) 推荐(0) 编辑
摘要: 1 1 >>> line2=['10.235186', '11.321997']2 2 >>> line3=[list(map(lambda x:float(x),line2))];3 3 >>> line34 4 [[10.235186, 11.321997]]注意:1 >>> map(lambd... 阅读全文
posted @ 2014-12-11 11:09 志者之梦 阅读(409) 评论(0) 推荐(0) 编辑
摘要: 使用sortrows函数:代码具体如下: 1 >> a=[1,3,2;3,0,5;2,2,6]; 2 >> a 3 4 a = 5 6 1 3 2 7 3 0 5 8 2 2 6 9 10 >> b=sortrows(... 阅读全文
posted @ 2014-12-09 20:55 志者之梦 阅读(9509) 评论(0) 推荐(0) 编辑
摘要: 1 >>> a=mat([[1,2,3],[5,6,9]]);2 >>> a3 matrix([[1, 2, 3],4 [5, 6, 9]])5 >>> shape(a)[0]6 27 >>> shape(a)[1]8 3如上面的a矩阵,2行3列;计算行使用shape(a)[0];计... 阅读全文
posted @ 2014-12-04 15:46 志者之梦 阅读(1912) 评论(0) 推荐(0) 编辑