码迷,mamicode.com
首页 >  
搜索关键字:union all    ( 25526个结果
Linux 内存池设计构想
一、基本数据结构 1 union m_block 2 { 3 union m_block* next; 4 unsigned int size; 5 }; 6 7 struct m_list 8 { 9 union m_block* free;...
分类:系统相关   时间:2014-06-19 07:59:56    阅读次数:309
MongoDB官方C#驱动中查询条件Query用法
http://www.cnblogs.com/viprx/archive/2012/09/06/2673693.htmlMongoDB条件查询的基本语法。Query.All("name", "a", "b");//通过多个元素来匹配数组Query.And(Query.EQ("name", "a"),...
分类:数据库   时间:2014-06-19 00:53:44    阅读次数:241
<linux下sysctl指令详解>
Sysctl指令是对系统核心参数的设置:用法:-a 参数列出系统中所有核心设置当然了这些核心的设置都是文件,存放于/proc/sys/net目录下。举个有代表性的例子:net.ipv4.icmp_echo_ignore_all = 0 把所有的点改为 / 就可以了。[root@redhat net]...
分类:系统相关   时间:2014-06-18 23:55:05    阅读次数:421
CSS3 动画效果带来的bug
css3 动画效果比如transition:all 2s linear;这种用来计算及时的物体坐标的话会带来一定的问题比如把一个DIV从A点移动到B点。JS为DIV.style.left=B;但是当我们使用上面的transition属性后,A点移动到B点是2秒内完成的,当执行JS代码时候,DIV还没...
分类:Web程序   时间:2014-06-17 00:43:52    阅读次数:443
Matlab实现图像分割
下面使用极小值点阈值选取方法,编写MATLAB程序实现图像分割的功能。 极小值点阈值选取法即从原图像的直方图的包络线中选取出极小值点, 并以极小值点为阈值将图像转为二值图像 clear all; close all ; G=imread('rabbit.png'); figure(); subplot(2,2,1); imshow(G); subplot(2,2,2); imhist(G...
分类:其他好文   时间:2014-06-15 15:03:26    阅读次数:293
Exdata cell 节点配置时遇到的一个问题
问题描述: [celladmin@vrh4 ~]$ cellcli CellCLI: Release 11.2.3.2.0 - Production on Sat Jun 14 09:11:08 EDT 2014 Copyright (c) 2007, 2012, Oracle.  All rights reserved. Cell Efficiency Ratio: 1 CellCLI...
分类:其他好文   时间:2014-06-15 15:02:45    阅读次数:211
[LeetCode] Combinations [38]
题目 Given two integers n and k, return all possible combinations of k numbers out of 1 ... n. For example, If n = 4 and k = 2, a solution is: [ [2,4], [3,4], [2,3], [1,2], [1,3],...
分类:其他好文   时间:2014-06-15 14:10:54    阅读次数:239
swift旅程
一般而言,一个新的语言都是从屏幕输出“hello,world”开始的。通过swift可以通过下面一行代码实现1//2// main.swift3// 14//5// Created by 李森 on 14-6-6.6// Copyright (c) 2014年 李森. All rights rese...
分类:其他好文   时间:2014-06-15 13:54:36    阅读次数:177
NYOJ 293 Sticks 【深搜】+【剪枝】
这是一道让人泪奔的题,它深刻的说明了什么是剪枝,哪怕是再小的一个细节,一旦递归规模增大都会引发巨大的时间消耗,真是神题~ Sticks 时间限制:3000 ms  |  内存限制:65535 KB 难度:5 描述George took sticks of the same length and cut them randomly until all part...
分类:其他好文   时间:2014-06-15 12:18:43    阅读次数:174
CABasicAnimation学习Demo 包括了一些常用的动画效果
个人写的一些例子: // // ViewController.m // CABasicAnimationDemo // // Created by haotian on 14-6-13. // Copyright (c) 2014年 Baseus. All rights reserved. // #import "ViewController.h" @interface ViewCo...
分类:其他好文   时间:2014-06-15 11:17:24    阅读次数:215
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!