自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(10)
  • 收藏
  • 关注

原创 LODS LODSB LODSW LODSD 例子【载入串指令】

[url]http://qwop.iteye.com/blog/1958761[/url][code="c++"]// lodsb.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include /*******************************...

2013-10-16 11:15:25 531

Java_BInary_Search

[code="java"]public static int binarySearch( int array[], int value ) { if ( null == array ) return -1; int low = 0, high = array.length - 1, middle = -1; while ( low array[ middle ] ) { ...

2012-09-25 14:09:44 89

sql cheat sheet

[code="sql"]CREATE DATABASE DATA_NAMEdrop database database_namecreate table person( lastname varchar, firstname varchar, address varchar, age int)alter tale table_name add c...

2012-09-25 13:56:14 336

原创 每周有特色的项目:6月11日 【sf.net】

每周有特色的项目:6月11日 本周再次我们沉重的游戏,有三个特色游戏。 一如既往,我们非常自豪我们的项目,并鼓励你看看他们。 • amsn的 MSN兼容的Messenger应用程序非常不错,amsn的使者,是一个多MSN信使克隆的。 很像其Windows基于对口。 适合那些尚未见过光的朋友保持联系。 工程在Linux • 过程黑客 过程中的黑客是一个自由和开放源码的...

2012-06-14 19:27:35 137

原创 精选项目,6月4日的一周 【sf.net】

精选项目,6月4日的一周 这个星期,我们具有更多的技术人员为重点的项目,包括几个安全应用程序和开发工具。 并一如既往,还有几个组合中的游戏。 非常感谢所有这些项目在SourceForge社区的一部分。 • Endian的防火墙社区 Endian的防火墙是一个“交钥匙”的Linux安全,变成一个全功能的安全设备,每个系统的分布。 它具有状态包过滤,代理服务器,防病毒/反垃...

2012-06-14 19:25:16 89

原创 CPP详解关键字 explicit

[code="cpp"]// Explicit.cpp : Defines the entry point for the console application.// 详解explicit关键字#include "stdafx.h"#include #include using namespace std;int obj_cnt = 0;class Perso...

2012-06-03 21:42:33 234

原创 cpp静态成员和普通成员

[code="cpp"]// object_static_002.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include using namespace std;class C1 {public: C1() { cout

2012-06-03 16:07:17 106

原创 变量的生命周期【CPP】

[code="c++"]// var_cycle_001.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include using namespace std;class Obj { char name[ 10 ];public : Obj( c...

2012-05-31 13:55:23 160

原创 插入排序【c语言】

[code="c"]#include void insertSort( int arr[] , int size ) { int i , j , k , f /*First element*/; // 0 1 2 3 4 // 4 3,2,1 // 3 4 2,1 // 2 3 4 1 // 1. 遍历无序区域 for ( i = 1; i < ...

2012-05-22 13:49:10 152

原创 二分查找【c语言】

[code="c"]#include int halfSearch( int arr[], int num, int size ) { int min = 0, max = ( size - 1), mid; if ( size == 0 ) { return -1; } while ( 1 ) { // 1. when the boundary is "min" or ...

2012-05-21 09:19:59 105

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除