自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 Practice_5: Adjacent List Graph

ONLY read data from file; e.g.3 20 1 90 2 101 0 92 0 10-1 -1 -1 //end lineMISS class List;  ONLY realize adjacent list;Some data is redundent;Just practice; fight on !! class EdgeNode{ //edge node public: int keyVal; int weight; EdgeNode* next; Ed

2011-03-13 08:59:00 561

原创 Practice_4: BST class

//missing some definition here class BSTree: protected Tree{ protected: TreeNode* FindMin(TreeNode* head, TreeNode** gp); TreeNode* FindMax(TreeNode* head, TreeNode** gp); void DFS(TreeNode* head); public: BSTree():Tree(2){ } ~BSTree(); bool

2011-03-13 04:17:00 389

原创 Practice_3: heap class

//missing definition here; class Heap { //from index 0 protected: int capacity; int current; ElementType* heap; int type; //min 0 or max 1, default min void PercolateUp(int i); void PercolateDown(int i); public: Heap(int num, int minOrMax

2011-03-13 04:07:00 335

原创 Practice_2: sorting

<br />#include <cstdio> #include <cstdlib> #define leftChild(i) (2*(i)+1) //from index 0 void BubbleSort(int L[], int len); void SeletionSort(int L[], int len); void MergeSort(int L[],int m, int n); void QuickSort(int L[],int l, int r); void Countin

2011-03-11 04:08:00 402

原创 Practice_1: binary search

#include int binarySearch(int L[], int len, int target){ int left = 0, right=len-1, mid; while(left L[mid]) left = mid + 1; else{ return mid; } } return -1; } int binarySearch1(int L[], int left, int right, int target){ int mid

2011-03-10 08:50:00 294

Data Mining--Concepts and Techniques(1e,Morgan Kaufmann,Elsevier,2000) 中文版

数据挖掘经典教材,数据挖掘:概念与技术 J. Han and M. Kambe Morgan Kaufmann 2000

2009-11-09

VC._NET开发驱动程序详解

适合人群为VC++.net广大编程人员 内容包含核心模式基础、核心流驱动、即插即用、电源管理、Win2000的管理机制、调试与开发驱动程序6个部分内容

2009-10-19

AD1674中文资料+英文资料(PDF格式)

AD1674中文资料+英文资料(PDF格式) AD1674 是美国AD 公司推出的一种12 位带并行微机接口的逐次逼近型模/数转换芯片。 欢迎下载...

2009-08-08

AD9851英文资料+中文版

包含英文版和中文版的AD9851资料 CMOS 180 MHz DDS/DAC Synthesizer 与AD9850的区别是含有一个6倍频器件,降低了外接晶振的频率要求...欢迎下载...

2009-08-08

空空如也

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

TA关注的人

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