自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

sulliy的专栏

见证未来

  • 博客(5)
  • 资源 (1)
  • 收藏
  • 关注

原创 VC使用DEELX正则引擎-DLL方式

DEELX 是一个在 C++ 环境下的与 Perl 兼容的正则表达式引擎。是 RegExLab 开展的一个研究开发项目。相比于GRETA很Boost来说是一个接口相对简单易用的正在引擎。其基本特点:支持与 Perl 兼容的正则表达式语法。 支持 IGNORECASE, SINGLELINE, MULTILINE 等常见匹配模式。 兼容性强,能在 vc6, vc7, vc8, gcc, Turbo C++ 等大多数 C++ 环境编译。 支持命名分组,条件表达式,递归表达式等多种高级特性。(1.2版本新特点)

2011-02-20 15:33:00 3436

原创 VS2008 Non-MFC Dll创建和调用

微软的Visual C++支持三种DLL,它们分别是Non-MFC Dll(非MFC动态库)、Regular Dll(常规DLL)、Extension Dll(扩展DLL)。Non-MFC DLL指的是不用MFC的类库结构,直接用C语言写的DLL,其导出的函数是标准的C接口,能被非MFC或MFC编写的应用程序所调用。Regular DLL:和下述的Extension Dlls一样,是用MFC类库编写的,它的一个明显的特点是在源文件里有一个继承CWinApp的类(注意:此类DLL虽然从CWinApp派生,但没

2011-02-19 23:23:00 5514 1

原创 Programming Quotes

1. Walking on water and developing software from a specification are easy if both are frozen. – Edward V Berard2. “Sometimes it pays to stay in bed on Monday, rather than spending the rest of the week debugging Monday’s code.” – Christopher Thompson 3. “Mo

2011-02-16 14:07:00 921

原创 快速排序的递归和非递归解法

快速排序非递归的实现方法借用堆栈实现,栈和队列是消除递归的常用方法。using System; using System.Collections.Generic; using System.Text; namespace QuickSort { class Program { public static void Main(string[] args) { int[] arr = { 4, 3

2011-02-15 10:36:00 1449

转载 Types of programmers

<br />In my code journeys and programming adventures I’ve encountered many strange foes, and even stranger allies. I’ve identified at least six different kinds of code warriors, some make for wonderful comrades in arms, while others seem to foil my every p

2011-02-12 10:36:00 693

The.Art.of.Agile.Development

The.Art.of.Agile.Development 敏捷开发的艺术

2014-08-24

空空如也

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

TA关注的人

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