- 博客(15)
- 收藏
- 关注

原创 数据结构
<br />一次冒泡排序:<br /><br />#include <iostream><br />using namespace std;<br />typedef struct node<br />{<br /> int data;<br /> struct node *next;<br />}node, * linklist;<br /><br />linklist creat_l(linklist &l,int n);<br />void jisuan(linklist l,int n);<br /
2011-04-05 16:04:00
296
原创 Queue
# -*-coding: utf-8 -*-# Author :writen by Qiusheng Li# Time: 2014/08/19# Email:liqiusheng_123@hotmail.com# enqueue Insert an item at the back of the queue# dequeue Remove an item from the front o
2014-08-19 20:15:30
485
原创 Queue1 -using two stacks impliment
# -*-coding: utf-8 -*-# Author :writen by Qiusheng Li# Time: 2014/08/18# Email:liqiusheng_123@hotmail.com# enqueue Insert an item at the back of the queue# dequeue Remove an item from the front o
2014-08-18 20:52:27
482
原创 Queue python
# -*-coding: utf-8 -*-# Author :writen by Qiusheng Li# Time: 2014/08/16# Email:liqiusheng_123@hotmail.com# enqueue Insert an item at the back of the queue# dequeue Remove an item from the front o
2014-08-16 21:38:36
843
原创 Stack---python
# -*-coding: utf-8 -*-# Author :writen by Qiusheng Li# Time: 2014/08/15# push Insert an item at the top of the stack# pop Remove an item from the top of the stack# peek Look up the element on the top#
2014-08-15 16:19:56
532
转载 ParaView整体介绍
ParaView是一个开源的,跨平台的数据处理和可视化程序。ParaView用户可以迅速的建立起可视化环境利用定量或者是定性的手段去分析数据。利用它的批量处理能力可以在三维或者是在报表中交互进行“数据挖掘”(这里不知道翻译的对不对)。ParaView开发使用分布式的内存计算资源来对非常大的数据集进行分析。它可以在超级计算机上运行万亿次的数据集以及笔记本电脑更小的数据分析。 本课程提供了
2014-07-13 16:24:24
9239
转载 在ParaView中有效的使用属性面板
The Properties panel in ParaView has undergone some changes since ParaView 3.98 with still more coming for the upcoming ParaView 4.0 release. The Properties panel, being the panel that users use to
2014-05-21 17:04:40
1434
转载 VTK的学习资源
本文介绍从哪儿开始学习VTK(Visualization Toolkit的简称),如何在网上找寻VTK的学习资源。 首先,可以到维基百科或者百度百科上查看VTK条目,了解VTK是什么。http://en.wikipedia.org/wiki/VTKhttp://baike.baidu.cn/view/627777.htm 然后可以到VTK官方网站看其
2014-05-17 16:42:48
861
原创 给定大小数组,随机取出不相同m个数。
#include #include #include #define MAX 10int data[MAX];int main(){ int i,j,m,temp; for(i=0;i { data[i]=i; } scanf("%d",&m); if(m { for(j=MAX;j>MAX-m;j--) { te
2013-04-01 00:38:50
511
原创 acm
1.1 数组和字符串1.1.1 一维数组倒置 要求不增加额外的内存空间 const int MAX=20;void Fun(int *a,int n){ int *p,*q,t; int m=n/2; for(p=a,q=a+n-1;p { t=*p; *p=*q; *q=t;
2011-06-06 21:53:00
730
原创 简单排序
<br />一次冒泡排序:<br /><br />#include <iostream><br />using namespace std;<br />typedef struct node<br />{<br /> int data;<br /> struct node *next;<br />}node, * linklist;<br /><br />linklist creat_l(linklist &l,int n);<br />void jisuan(linklist l,int n);<br /
2011-04-06 21:28:00
338
原创 tagTest
<br />public tagRECT {<br /> int left,<br /> int top,<br /> int right,<br /> int bottom<br />)
2011-04-05 14:40:00
347
转载 高斯背景建模
<br />OPENCV中混合高斯背景模型的实现 --转自面朝大海,春暖花开的空间 <br />看高斯混合模型的论文的时候感觉一头雾水,主要是那些概率公式比较难懂,看了几遍论文和代码才有了一点感觉,以下是个人的对混合高斯背景模型代码的理解,后面会通过进一步理解不断对此贴修正.....<br />注:本人对该代码的理解也有很多不到位的地方,希望以后会慢慢矫正。程序中代码的实现与论文中公式有些出入,不过不影响对全局的把握和理解。<br />////////////////////////cvCreateGaus
2011-03-16 21:19:00
705
原创 背景差法OpenCV实现程序代码
背景差法OpenCV实现程序代码<br />默认分类2010-11-12 22:10:27阅读70评论0 字号:大中小 订阅<br />#include "highgui.h"<br />#include "cv.h"<br />#include <stdio.h><br />#include"例子一.h" <br />int main(int argc,char**argv)<br />{<br />//声明指针,矩阵<br />IplImage*image=NULL;<br />IplImage*ba
2011-03-08 17:31:00
1906
原创 opencv使用cvDFT 傅立叶转换的例子
opencv使用cvDFT 傅立叶转换的例子 <br />int main(int argc, char* argv[])<br />...{<br /><br /> unsigned int i;<br /> CvMat* s = cvCreateMat(1,32,CV_32FC1);<br /> CvMat* d = cvCreateMat(1,32,CV_32FC1);<br /> CvMat* s2 = cvCreateMat(1,32,CV_32FC1);<br />
2011-03-08 17:23:00
1684
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人