上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 527 下一页
摘要: 相关文档: http://blog.sina.com.cn/s/blog_877284510101jo5d.html http://www.cnblogs.com/dojo-lzz/p/3999013.html http://www.cnblogs.com/lhb25/p/inside-block- 阅读全文
posted @ 2016-04-05 15:55 zfyouxi 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 预览效果图 <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="Generator" content="EditPlus®"> <meta name="Author" content=""> <meta 阅读全文
posted @ 2016-04-05 15:23 zfyouxi 阅读(331) 评论(0) 推荐(0) 编辑
摘要: 方法: document.getElementById("xx").style.xxx中的全部属性是什么 盒子标签和属性对比 CSS语法(不区分大写和小写) JavaScript语法(区分大写和小写) border border border-bottom borderBottom border-b 阅读全文
posted @ 2016-04-05 14:52 zfyouxi 阅读(16949) 评论(0) 推荐(0) 编辑
摘要: 为了建立冗余较小、结构合理的数据库,设计数据库时必须遵循一定的规则。在关系型数据库中这样的规则就称为范式。范式是符合某一种设计要求的总结。要想设计一个结构合理的关系型数据库。必须满足一定的范式。 在实际开发中最为常见的设计范式有三个: 1.第一范式(确保每列保持原子性) 第一范式是最主要的范式。假设 阅读全文
posted @ 2016-04-05 13:31 zfyouxi 阅读(228) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4941 题目大意:给你10^5个点。每一个点有一个数值。点的xy坐标是0~10^9。点存在于矩阵中。然后给出10^5个操作。1代表交换行。2代表交换列,3代表查询坐标为xy点的数值。 数据量非常大.... 阅读全文
posted @ 2016-04-05 12:26 zfyouxi 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 平衡二叉树(Self-Balancing Binary Search Tree/Height-Balanced Binary Search Tree),是一种二叉排序树,当中每个节点的左子树和右子树的高度差至多等于1. 平衡二叉树的前提是二叉排序树,不是二叉排序树的都不是平衡二叉树。 平衡因子BF( 阅读全文
posted @ 2016-04-05 11:18 zfyouxi 阅读(656) 评论(2) 推荐(0) 编辑
摘要: /usr/src/linux-source-3.8.0/drivers/gpu/drm/radeon 这个文件夹以下 去找到这个文件 mkregtable.c 打开,就能够看到了。 #define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMB 阅读全文
posted @ 2016-04-05 10:40 zfyouxi 阅读(340) 评论(0) 推荐(0) 编辑
摘要: #include <stdlib.h> #include <iostream> #include <ctime> using namespace std; void Test() { int ran_num = 0; cout<<"不指定seed, "; for(int i=0; i<10;i++) 阅读全文
posted @ 2016-04-05 09:29 zfyouxi 阅读(1059) 评论(0) 推荐(0) 编辑
摘要: 假设调用系统的图片接口: Intent intent = new Intent(Intent.ACTION_PICK, android.provider.MediaStore.Images.Media.EXTERNAL_CONTENT_URI); // intent.addCategory(Inte 阅读全文
posted @ 2016-04-05 08:37 zfyouxi 阅读(186) 评论(0) 推荐(0) 编辑
摘要: Django 1.6 最佳实践: 怎样正确使用 CBVs (Class-based views) Class-based views是Django为解决建站过程中的常见的呈现模式而建立的. 在这节中, 我们着重讲一下CBVs的使用技巧和一般原则. 1. CBVs的使用原则 代码越少越好永远不要反复代 阅读全文
posted @ 2016-04-05 08:24 zfyouxi 阅读(277) 评论(0) 推荐(0) 编辑
上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 527 下一页