上一页 1 ··· 10 11 12 13 14
摘要: 1、安装vs2012; 2、下载Qt 5.2.0 for Windows 32-bit(VS 2012, 579 MB) 和 Visual Studio Add-in 1.2.2for Qt5 注意: 此处不要选择64位的,否则插件会和qt不匹配,插件是32位的。 3、安装Qt 5.2.0 for 阅读全文
posted @ 2016-10-19 22:19 体育.委员 阅读(2665) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<cassert> using namespace std; template <class T>//链栈 struct LinkNode{T data;LinkNode<T> *Link;LinkNode(LinkNode<T> *pr=NULL 阅读全文
posted @ 2016-10-19 22:10 体育.委员 阅读(669) 评论(0) 推荐(0) 编辑
摘要: #include"stdafx.h"#include"opencv2/opencv.hpp" using namespace cv;int g_slider_position = 0; CvCapture* g_capture = NULL; void onTrackbarSlider(int po 阅读全文
posted @ 2016-10-16 11:08 体育.委员 阅读(206) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<cassert>#include<cstring>#include<string>using namespace std; int maxLength=100;const int stackIncreament = 20;template<cla 阅读全文
posted @ 2016-10-16 10:30 体育.委员 阅读(632) 评论(0) 推荐(0) 编辑
摘要: http://www.2cto.com/os/201204/126203.html转载 阅读全文
posted @ 2016-10-03 15:10 体育.委员 阅读(757) 评论(0) 推荐(0) 编辑
摘要: #include<iostream> using namespace std;template <class T>struct linkNode{ T data; linkNode<T> *link; linkNode(linkNode<T> *pr=NULL){link=pr;} linkNode 阅读全文
posted @ 2016-10-03 15:03 体育.委员 阅读(324) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>//本线性表的last为个数,例如last为5,线性表值从0-4#include<cstdlib> const int defaultsize = 100; using namespace std; template<class T>class SeqList{p 阅读全文
posted @ 2016-09-18 08:30 体育.委员 阅读(687) 评论(0) 推荐(0) 编辑
上一页 1 ··· 10 11 12 13 14