自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 JS两栏等高:Javascript set two columns to have the same height

http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">http://www.w3.org/1999/xhtml" >                function AutoHeight() {            var h = document.getElementById("leftbar").style.height; 

2009-12-20 18:14:00 400

原创 C++链表实现堆栈:LinkList:Build a linklist using C++ class Stack

  // Stack.cpp : Defines the entry point for the console application.   #include "stdafx.h"#include "iostream"using namespace std;typedef struct_node   intdata;

2009-12-09 16:07:00 431

原创 非递归交换二叉树左右子树:BinaryTree:Exchange the left child and the right child without recursive method

// BTree.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include "iostream"#include "stack"using namespace std;typedef struct _node{ int data; struct _node* rch; st

2009-12-05 13:52:00 583

原创 递归交换二叉树左右子树:BinaryTree:Exchange the left child and right child of a binary tree

// BTree.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include "iostream"using namespace std;typedef struct _node{ int data; struct _node* rch; struct _node* lch;

2009-12-05 11:46:00 527

原创 中序遍历二叉排序树:BinarySearchTree:Create a tree and InorderTree

// BinaryTree.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include "iostream"using namespace std;typedef struct _node{ struct _node* lch; struct _node* rch; int

2009-12-04 10:44:00 445

原创 链表插入排序:LinkList:Sort a LinkList(insert directly)

// ListSort.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include "iostream"using namespace std;typedef struct _node{ int data;   struct _node *next;}Node;int _tm

2009-12-03 17:31:00 852

原创 递归合并两链表:LinkList:Merge Two Lists using recursive method

// LinkList.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include "iostream"using namespace std;typedef struct _node{ int val; struct _node* next;}Node; Node*

2009-12-03 11:04:00 314

原创 合并两链表:LinkList:Merge Two LinkList using the general method

// LinkList.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include "iostream"using namespace std;typedef struct _node{ int val; struct _node* next;}Node; Node*

2009-12-03 10:44:00 486

原创 翻转链表:LinkList:Reverse a LinkList has some interesting method(C++)

// LinkList.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include "iostream"using namespace std;typedef struct _node{ int val; struct _node* next;}Node;  Node

2009-12-03 10:02:00 361

原创 全排列:String:Permutation using C++

// Permutation.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include "iostream"using namespace std;void OutCh(char ch[]){ int len=sizeof(ch)/sizeof(char); for(int

2009-12-02 17:11:00 451

原创 数字转换为字符串:String:convert an int to a string

// QuickSort.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include "iostream"using namespace std;char* ltoa( int n){ int count=0; int m=n; int l=1; if(m {  count++;

2009-12-02 16:29:00 425

原创 字符串转换为数字:String:convert a string to int

#include "stdafx.h"#include "iostream"using namespace std;long int atol(char *c){ int count=0; int val=1; int l=0; if(*c==-) {  c++;  val=-1; }  while(*c!=/0)  {     l=l*10+(*c)-0;  c++;  }  r

2009-12-02 15:14:00 297

原创 快速排序:Sort:QuickSort using C++

// QuickSort.cpp : Defines the entry point for the console application.//#include "stdafx.h"#include "iostream"using namespace std;void QuickSort(int num[],int low,int high){int pivot=num[low];int i

2009-12-02 10:34:00 300

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关注的人

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