自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 开始学习Linux

<br />读书时候linux的培训就很火。<br />下了个文档,决定好好学,得空装个试试。<br />工作快两年了,一直想做开发。<br />一年前,以为考了软设就能跳了。<br />面疲之后没走成,稀里糊涂地做了半年技术支持,熬了不少夜班。<br />看着兄弟们都走了,一个星期的观察期也能让我辞职,欣然前往。<br />这次是web开发,一方面对于游戏的不热衷,一方面搬家的杂事。<br />如果我能够积极多点,把学习任务漂亮地完成,不问那些傻问题,也就不会延长观察期。<br />如果我能轻松点,好好琢

2010-06-09 18:40:00 310

原创 堆排序

<br />// array是待调整的堆数组,i是待调整的数组元素的位置,length是数组的长度 <br />  void HeapAdjust(int array[], int i, int nLength) <br />  { <br />                  int nChild, nTemp; <br />                  for (nTemp = array[i]; 2 * i + 1 < nLength; i = nChild) <br />         

2010-06-07 15:11:00 247

原创 内存拷贝函数

<br />void* memcpy( void *dst, const void *src, unsigned int len )<br />{<br />    register char *d;<br />    register char *s;<br />    if (len == 0)<br />        return dst;<br />    if ( dst > src )   //考虑覆盖情况<br />    {<br />        d = (char *)dst + l

2010-06-07 11:13:00 319

原创 Josephu问题的链表解决方案

<br />typedef struct Node<br />{<br />  int index;<br />  struct Node *next;<br />}JosephuNode;<br /><br />int Josephu(int n, int m)<br />{<br />  int i, j;<br />  JosephuNode *head, *tail;<br />  head = tail = (JosephuNode *)malloc(sizeof(JosephuNode));<b

2010-06-07 10:17:00 572

原创 删除相同值节点

<br />双向循环链表结点定义为:<br />struct node<br />{ int data;<br />struct node *front,*next;<br />};<br /><br /><br />两个双向循环链表A,B,头指针为:pHeadA,pHeadB,函数将两链表中data值相同的结点删除:<br />BOOL DeteleNode(Node *pHead, DataType Value)<br />{<br />    if (pHeader == NULL) return f

2010-06-07 09:47:00 469

原创 set求交集

<br />// test.cpp : Defines the entry point for the console application.<br />//<br />#include "stdafx.h"<br />#include "iostream"<br />#include "algorithm"<br />#include "set"<br />using namespace std;<br /> <br />int _tmain(int argc, _TCHAR* argv[])<br /

2010-06-03 16:49:00 1240

原创 螺旋矩阵

<br />// test.cpp : Defines the entry point for the console application.<br />//<br />#include "stdafx.h"<br />#include "iostream"<br />using namespace std;<br /> <br />int _tmain(int argc, _TCHAR* argv[])<br />{<br />     const int N=10;   <br />  int met

2010-06-02 13:36:00 323

flask框架原理

描述了web服务器和flask的关系;对web服务器和flask框架的搭建给了建议;初学者可以快速对flask框架有清晰的认识!

2017-09-02

WCF的简单实验,实用

WCF的框架搭建,参考网上的连载,简单的计算服务

2010-04-30

MFC写的IE,有收藏夹功能

MFC写的浏览器,有基本功能,收藏夹链接可用,其他功能有待完善

2010-04-28

MFC写的浏览器,有收藏夹

基本的浏览器功能,收藏夹的链接跳转问题在研究中

2010-04-28

Operating data using asp.net

Add,delete and search data record without database

2009-12-02

A Simple Chatting Program using C++

A simple program that can send and receive messages,the applied environment is the same network.

2009-10-21

Draw different style using MFC

Know message on_command(ID_Line,&CDrawMView::OnLine())

2009-09-23

Make Two Timers using MFC

Learn MFC to know how the messages work and timer will give very swift result

2009-09-13

WF Practice

It has some useful components of WF,if you just want to learn something about WF.It may be helpful for you.

2009-05-11

simple workflow

very easy to understand the idea of workflow

2009-04-21

空空如也

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

TA关注的人

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