码迷,mamicode.com
首页 > 2014年11月29日 > 全部分享
mysqldump用法
数据库mysqldump的使用mysqldump -hhost -uusername -ppassword --databases db1 > db1.sql导出(会导出数据):mysqldump -h10.210.211.51 -uroot -ptools --databases starry_o...
分类:数据库   时间:2014-11-29 06:47:53    阅读次数:173
poj 3348 Cows 凸包 求多边形面积 计算几何 难度:0 Source:CCC207
CowsTime Limit:2000MSMemory Limit:65536KTotal Submissions:7038Accepted:3242DescriptionYour friend to the south is interested in building fences and tu...
分类:其他好文   时间:2014-11-29 06:47:32    阅读次数:194
Leetcode-Binary Tree Inorder Traversal
Given a binary tree, return the inorder traversal of its nodes' values. For example:Given binary tree {1,#,2,3}, 1 \ 2 / 3return [1,3,2]...
分类:其他好文   时间:2014-11-29 06:47:04    阅读次数:137
Leetcode-Unique Binary Search Trees II
Given n, generate all structurally unique BST's (binary search trees) that store values 1...n. For example,Given n = 3, your program should return all...
分类:其他好文   时间:2014-11-29 06:47:54    阅读次数:165
[iOS基础控件 - 5.1] UIScrollView
A.需要掌握UIScrollView 是一个能够滚动的视图控件,可以用来展示大量内容,如手机的“设置”1.常见属性2.常用代理方法3.缩放4.UIScrollView和UIPageControl的分页5.NSTime的使用B.UIScrollView概念与使用练习:显示大图,以原始尺寸显示一张图片,...
分类:移动开发   时间:2014-11-29 06:46:11    阅读次数:264
Leetcode-Min Stack
Design a stack that supports push, pop, top, and retrieving the minimum element in constant time.push(x) -- Push element x onto stack.pop() -- Removes...
分类:其他好文   时间:2014-11-29 06:46:39    阅读次数:189
json数据相对于xml数据.
JSON is a valid subset of JavaScript, Python, and YAMLJSON parsing is generally faster than XML parsing.JSON is a more compact format, meaning it weig...
分类:Web程序   时间:2014-11-29 06:44:14    阅读次数:141
python第三方库系列之十--commands库
我们这次讲的是利用commands模块执行Linux shell命令,当我们用Python写运维脚本时,经常需要执行linux shell的命令,Python中的commands模块专门用于调用Linux shell命令,并返回状态和结果,下面是commands模块的3个主要函数:1.comman....
分类:编程语言   时间:2014-11-29 06:43:36    阅读次数:189
css合并
你可以写了三个css样式表css_red.css , css_blue.css , css_green.css这样你就可以写一个主样式 style.css 把三个样式表都装进去:@import "css_red.css"; @import "css_blue.css";@import ...
分类:Web程序   时间:2014-11-29 06:41:59    阅读次数:169
Leetcode-Intersection of Two Linked Lists
Write a program to find the node at which the intersection of two singly linked lists begins.For example, the following two linked lists: A: ...
分类:其他好文   时间:2014-11-29 06:44:17    阅读次数:137
【原创】Linux环境下的图形系统和AMD R600显卡编程(3)——AMD显卡简介
早期的显卡仅用于显示,后来显卡中加入了2D加速部件,这些部件用于做拷屏,画点,画线等操作。随着游戏、三维模拟以及科学计算可视化等需要,对3D的需求逐渐增加,早期图形绘制工作由CPU来完成,要达到真实感和实时效果,只能绘制一些简单的线框模型,上世纪80年代,斯坦福大学的Jim Clark教授率先提.....
分类:系统相关   时间:2014-11-29 06:42:34    阅读次数:225
[Database] Deadlock avoidance protocol
如何避免Deadlock,如果我们能提前知道各个Process对于资源的需求情况,我们就可以用Banker's algorithm (银行家算法) 来解决问题。可是这在现在中不好实现,因为很难提前知道对于资源的需求情况。此时可以用一下两种方法来解决问题。1. Wait - die Protocol2...
分类:数据库   时间:2014-11-29 06:41:52    阅读次数:181
Linux中的权限管理命令-chmod
linux中删除一个权限的前提条件是对文件所在的目录有写权限。删除一个文件的前提条件不是对这个文件有写权限,对文件有写权限只能修改文件的内容。
分类:系统相关   时间:2014-11-29 06:43:14    阅读次数:276
key-value 内存数据库 : memcached vs redis
Memcached:高性能的分布式缓存数据库key-value存储方式(hashmap)不支持数据持久化,服务器关闭后数据全部被丢失C开发的,基于libevent库,在大多数linux,bsd,solaris,以及windows等os上都可用客户端实现软件的语言非常多:C/C++, PHP, Jav...
分类:数据库   时间:2014-11-29 06:41:21    阅读次数:282
一路的前端编辑器
记得刚刚开始接触前端工作的时候,跟许多人一样一开始都会选择DW,DW以完善的代码提示及友好的所见及所得的辅助功能一直是广大前端教学者的首选工具。在使用DW一年中也一直觉得DW是个很好的前端工具,直到同事推荐我使用另一个前端工具—sublime,当时就有些犹豫需不需要换一个工具了,百度几翻搜搜,都会听...
分类:其他好文   时间:2014-11-29 06:41:42    阅读次数:179
uva 12356 Army Buddies 树状数组解法 树状数组求加和恰为k的最小项号 难度:1
Nlogonia is fighting a ruthless war against the neighboring country of Cubiconia. The Chief General of Nlogonia's Army decided to attack the enemy wit...
分类:编程语言   时间:2014-11-29 06:40:09    阅读次数:284
[iOS基础控件 - 5.2] 查看大图、缩放图片代码(UIScrollView制作)
原图: 900 x 1305 拖曳滚动:缩放: 主要代码: 1 // 2 // ViewController.m 3 // ImageZoom 4 // 5 // Created by hellovoidworld on 14/11/28. 6 // Copyright (c) 2014年 ...
分类:移动开发   时间:2014-11-29 06:42:31    阅读次数:202
1323条   上一页 1 ... 66 67 68 69 70 71 72 ... 78 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!