自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

原创 单链表的创建、插入、删除;创建采用两种不同的方式:一种是从表头到表尾,另一种是从表尾到表头!

#include "stdio.h" #include "stdlib.h" typedef int ElemType; ////////////////////////////////////////////////////////////////////////// typedef struct LNode { ElemType data;          //数据域

2013-04-01 22:09:40 933

转载 调试技巧

Visual C++ 的 C 运行时刻函数库标识模板 0xCD    已经分配的数据(alloCated Data) 0xDD    已经释放的数据(Deleted Data) 0xFD    被保护的数据(Fence Data) Visual C++ 的 C 运行时刻函数库内存块类型标识符 _NORMAL_BLOCK    由程序直接分配的内存 _CLIENT_BLOCK

2013-03-31 10:49:15 351

原创 今天学了线性表顺序表示,自己写了一段代码!实现了 插入和删除!这也是第一次写博客

#include #include #define LIST_MAX 100 #define LISTINCREMENT 10 typedef int ElemType; ////////////////////////////////////////////////////////////////////////// //线性表结构 typedef struct  {

2013-03-31 08:47:35 467

vtk user guide

The Visualization Toolkit (VTK) is an open-source, freely available software system for 3D computer graphics, image processing and visualization. VTK consists of a C++ class library and several interpreted interface layers including Tcl/Tk, Java, and Python. Kitware, whose team created and continues to extend the toolkit, offers professional support and consulting services for VTK. VTK supports a wide variety of visualization algorithms including: scalar, vector, tensor, texture, and volumetric methods; and advanced modeling techniques such as: implicit modeling, polygon reduction, mesh smoothing, cutting, contouring, and Delaunay triangulation. VTK has an extensive information visualization framework, has a suite of 3D interaction widgets, supports parallel processing, and integrates with various databases on GUI toolkits such as Qt and Tk. VTK is cross-platform and runs on Linux, Windows, Mac and Unix platforms.

2013-03-26

空空如也

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

TA关注的人

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