自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Vincent--programming life

Come by,if you have time!

  • 博客(5)
  • 收藏
  • 关注

原创 考研的数学复习经验(感谢考研论坛供贴)

硕士研究生入学数学考试历年是考生们感到很棘手的问题,很多考生由于数学没考好而痛失深造的机会。尤其对于文科改考理工科或经济类学科的考生来说,数学这门课的难度可称为所有科目中最大的,也是最让人担心的。 自从1997年数学考试大纲进行了一次较大的调整以来,考生们普遍反映试题越来越难了。数学几乎成了相当部分考生难以逾越的“关口”。在这种情况下,部分考生“病急乱投医”,盲目参加各种辅导班,结果花费了大量的时

2004-11-28 00:45:00 3206 1

原创 关于二叉树前序输入且输出结构的算法实现

#include #include #include #define ElementType int#define  MaxSize 511 //the number of the node is 2^levels-1                     //and the max level is 9//An array to store each value of the node i

2004-11-13 12:59:00 1149 4

原创 改进的二叉树算法——接受输入

#include #include #include #define ElementType int//node structure constructortypedef struct bt {   ElementType data;   struct bt *lchild, *rchild;} BinaryTreeNode,*BTRoot;//function declearInOrde

2004-11-13 00:29:00 1161

原创 大学一年级做过的一道程序题——螺旋矩阵

/*螺旋矩阵*/#include #include #define DOWN    0#define LEFT    1#define UP      2#define RIGHT   3//N*N矩阵#define N   5void printMatrix(int *a[], int n) {    int i, j;    for (i = 0; i         for (j = 0;

2004-11-13 00:23:00 1199 1

原创 基本的一个binarytree的遍历程序

// binarytree.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include struct node{ int value; int right; int left;}tree[15];void inorder(int root){ if(tree[root].left!=-1)  inorder(tree[root].left); printf(

2004-11-09 11:49:00 1042 1

空空如也

空空如也

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

TA关注的人

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