首页 > 2015年07月23日 > 全部分享
实现icon和文字垂直居中的两种方法-(vertical-align and line-height)
方法一:vertical-align 在w3school定义:该属性定义行内元素的基线相对于该元素所在行的基线的垂直对齐 百思不得骑姐 然后Google,反正在w3schools上面并没有找到定义 只能写代码测试 而后个人理解,才作出如此解释》 该属性作用的对象:行内元素(inline,inline-block也有行内属性) 其他table-cell  常用属性值:top mid...
分类:其他   时间:2015-07-23 07:05:29    收藏:0  评论:0  赞:0  阅读:222
Codeforces Round #313 (Div. 2) (ABCD题解)
Codeforces Round #313 (Div. 2) (ABCD题解)...
分类:其他   时间:2015-07-23 07:04:19    收藏:0  评论:0  赞:1  阅读:814
linux(ubuntu)下编译安装cx_Freeze失败解决方法
今天准备把写好的程序打包,结果折腾了一天。先是用pyinstaller,发现打包出来运行不了,应该是在处理import出问题。于是考虑用cx freeze代替,结果在安装的时候就报错,后来找到了解决办法。先是从http://sourceforge.net/projects/cx-freeze/files/上下载cx_Freeze(版本4.3.3)的包 解压,执行:sudo python setup...
分类:系统服务   时间:2015-07-23 07:04:09    收藏:0  评论:0  赞:0  阅读:252
#leetcode#Search a 2D Matrix II
Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties: Integers in each row are sorted in ascending from left to right.Integers in...
分类:其他   时间:2015-07-23 07:03:49    收藏:0  评论:0  赞:0  阅读:104
leetcode 240: Search a 2D Matrix II
leetcode 240: Search a 2D Matrix II python java c++...
分类:其他   时间:2015-07-23 07:03:39    收藏:0  评论:0  赞:0  阅读:195
opencv实现canopy算法
#include "stdafx.h"using namespace cv;int main(int argc, char** argv){ Mat img=imread("d:/pic/lena.jpg"); imshow("src",img); CV_Assert(!img.e...
分类:编程语言   时间:2015-07-23 07:01:58    收藏:0  评论:0  赞:0  阅读:397
关于外键的增删操作
给表添加外键必须满足2个条件,1,该表的引擎必须是InnoDB,2,必须给要添加外键的字段建立索引 create table child( cid int not null auto_increment primary key, pid int, key pid(pid), cname varcha...
分类:其他   时间:2015-07-23 07:00:58    收藏:0  评论:0  赞:0  阅读:157
108 Convert Sorted Array to Binary Search Tree
108 Convert Sorted Array to Binary Search Tree递归解法还是非常直观的class Solution: # @param {integer[]} nums # @return {TreeNode} def sortedArrayToBST(...
分类:其他   时间:2015-07-23 06:58:18    收藏:0  评论:0  赞:0  阅读:132
Codeforces Round #313 (Div. 2)B.B. Gerald is into Art
B. Gerald is into ArtTime Limit: 20 SecMemory Limit: 256 MB题目连接http://codeforces.com/problemset/problem/560/BDescriptionGerald bought two very rare pa...
分类:其他   时间:2015-07-23 06:56:28    收藏:0  评论:0  赞:0  阅读:112
如何调戏NSString
给出一个字符串@"I am a boy,I like playing computer games",然后我们尽我们所能的调戏它. NSString *string=@"I am a boy,I like playing computer games"; NSMutableString*mS...
分类:其他   时间:2015-07-23 06:53:39    收藏:0  评论:0  赞:0  阅读:214
你必须知道的指针基础-8.栈空间与堆空间
一个由C/C++编译的程序占用的内存分为以下几个部分:1、栈区(stack):又编译器自动分配释放,存放函数的参数值,局部变量的值等,其操作方式类似于数据结构的栈。2、堆区(heap):一般是由程序员分配释放,若程序员不释放的话,程序结束时可能由OS回收,值得注意的是他与数据结构的堆是两回事,分配方...
分类:其他   时间:2015-07-23 06:51:38    收藏:0  评论:0  赞:0  阅读:306
103 Binary Tree Zigzag Level Order Traversal
103 Binary Tree Zigzag Level Order Traversallevel traversal的变种class Solution: # @param {TreeNode} root # @return {integer[][]} def zigzagLeve...
分类:其他   时间:2015-07-23 06:51:08    收藏:0  评论:0  赞:0  阅读:221
Populating Next Right Pointers in Each Node I && II
Given a binary tree struct TreeLinkNode { TreeLinkNode *left; TreeLinkNode *right; TreeLinkNode *next; }Populate each next pointe...
分类:其他   时间:2015-07-23 06:50:18    收藏:0  评论:0  赞:0  阅读:214
IOS 逆向工程之砸壳
在《iOS应用逆向工程》4.6.2节中,我们曾推荐使用iPhoneCake源的AppCrackr 1.7版给App砸壳。这种方式简单粗暴,省时省力,但正是因为它过于方便有木有,导致几乎所有iDevice用户都可轻松上手,随便亵玩,所以不少用户都拿它来破解程序,而不是学习《iOS应用逆向工程》,简直可...
分类:移动平台   时间:2015-07-23 06:48:28    收藏:0  评论:0  赞:0  阅读:270
【实习项目记录】(一)加密算法MD5和RSA
什么是md5加密?MD5的全称是Message-Digest Algorithm 5(信息-摘要算法),在90年代初由MIT Laboratory for Computer Science和RSA Data Security Inc的Ronald L. Rivest开发出来,经MD2、MD3和MD4...
分类:编程语言   时间:2015-07-23 06:45:08    收藏:0  评论:0  赞:0  阅读:220
117 Populating Next Right Pointers in Each Node II
117 Populating Next Right Pointers in Each Node II就是 Bibary Tree Level order Traverseclass Solution: # @param root, a tree link node # @return n...
分类:其他   时间:2015-07-23 06:43:38    收藏:0  评论:0  赞:0  阅读:197
hadoop2.6.0的eclipse插件安装
1.安装插件下载插件hadoop-eclipse-plugin-2.6.0.jar并将其放到eclips安装目录->plugins(插件)文件夹下。然后启动eclipse。配置 hadoop 安装目录 配置Map/Reduce 视图 点击"大象" 在“Map/Reduce Lo...
分类:系统服务   时间:2015-07-23 06:43:08    收藏:0  评论:0  赞:0  阅读:290
UITableView知识梳理须知—(一)
1、UITableView掌握 1> 设置UITableView的dataSource、delegate 2> UITableView多组数据和单组数据的展示 3> UITableViewCell的常见属性 4> UITableView的性能优化(cell的循环利用) 5> 自定义...
分类:其他   时间:2015-07-23 06:42:48    收藏:0  评论:0  赞:0  阅读:178
File类学习
1、File f = new File(pathname),不是真真正正在硬盘上创建一个文件或者是目录,是在内存里面创建名字叫pathname的file对象在window下反斜杠就是一个路径分隔符,liunx下是正斜杠,事实上无论在window下还是linux下写正斜杠都没有问题例子程序public...
分类:其他   时间:2015-07-23 06:42:19    收藏:0  评论:0  赞:0  阅读:137
mongodb主从复制
注释掉bind_ip
分类:数据库技术   时间:2015-07-23 06:42:08    收藏:0  评论:0  赞:0  阅读:167
1953条   上一页 1 ... 81 82 83 84 85 ... 98 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!