上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 53 下一页
摘要: http://blog.csdn.net/Regina8023/article/details/44949267 阅读全文
posted @ 2016-10-12 16:17 柳下_MBX 阅读(132) 评论(0) 推荐(0) 编辑
摘要: 下载:下载地址:http://www.ubuntukylin.com/application/show.php?lang=cn&id=279下载后解压得到wine-qqintl文件夹,里面有三个deb包:fonts-wqy-microhei_0.2.0-beta-2_all.deb、ttf-wqy- 阅读全文
posted @ 2016-09-29 01:43 柳下_MBX 阅读(1119) 评论(0) 推荐(0) 编辑
摘要: tuple就是元组的类型,他和列表相近,但是也有很大的区别,如上,tuple不能修改元素,如果修改就会报错,如上 判断一个列表可以看中括号,但是看元组的依据主要是逗号 eg:如果我们只是需要一个元素,如果不加上逗号,那么会被默认为一个整数类型,如果在后面加上一个逗号,就会被认为是tuple 但是对于 阅读全文
posted @ 2016-09-29 00:31 柳下_MBX 阅读(1306) 评论(0) 推荐(0) 编辑
摘要: python自带的sort函数其实有3个参数,都有默认的值,第一个是func,代表解决的算法,python的sort是由归并排序解决的,第二格式key和func想对应。第三个是reverse就是反转,默认的值为false,如果希望、 sort从大到小排序,就将reverse赋值为True, list 阅读全文
posted @ 2016-09-28 23:40 柳下_MBX 阅读(461) 评论(0) 推荐(0) 编辑
摘要: 列表切片 [:]取出中间的某一段元素切片,如果不加上,默认就是边界 阅读全文
posted @ 2016-09-28 22:56 柳下_MBX 阅读(305) 评论(0) 推荐(0) 编辑
摘要: 在贪吃蛇的代码中,我们在定时器中将pa函数注释掉,可以解决其不动的问题,我们用此背景可以进行画图,我们首先可以画一条直线,此时我们不能用HDC去画,应该创建一个临时的HDC和位图,进行画,之后将临时的加载到原HDC中,因为如果不创建临时的,在画完起点后就被release掉了,最后结果就是终点和(0, 阅读全文
posted @ 2016-09-13 00:27 柳下_MBX 阅读(742) 评论(2) 推荐(0) 编辑
摘要: 资源文件 阅读全文
posted @ 2016-09-12 16:48 柳下_MBX 阅读(298) 评论(0) 推荐(0) 编辑
摘要: #include #include #include using namespace std; int main(){ vectorvv(5,123); vector::iterator ite=vv.begin(); while(ite!=vv.end()){ cout::iterator itepos=::find(vv.begin(... 阅读全文
posted @ 2016-08-25 14:22 柳下_MBX 阅读(175) 评论(0) 推荐(0) 编辑
摘要: C - Area Time Limit:3000MS Memory Limit:0KB 64bit IO Format:%lld & %llu Submit Status Description Jerry, a middle school student, addicts himself to m 阅读全文
posted @ 2016-07-22 14:00 柳下_MBX 阅读(385) 评论(0) 推荐(0) 编辑
摘要: #include #include #include typedef struct node{ errno_t (*fp_strcpy_s)(char * , rsize_t , const char * ); size_t (*fp_strlen)( const char * ); int (*fp_strcmp)( const char * , ... 阅读全文
posted @ 2016-07-21 22:25 柳下_MBX 阅读(155) 评论(0) 推荐(0) 编辑
上一页 1 ··· 16 17 18 19 20 21 22 23 24 ··· 53 下一页