E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
stdafx.h
一个关于单词的字谜问题
算法效率是RCW(行,列,单词数量)实例:#include"
stdafx.h
" #include"time.h" #includ
pp634077956
·
2015-08-30 20:00
选择问题
**** *#include"
stdafx.h
" *#include"time.h"* #include #defineN
pp634077956
·
2015-08-30 16:00
求最大子序列和的四种方法
用到的头文件和宏定义如下#include"
stdafx.h
" #include #include #include #include #include #include typedeflongintl_int
st125475466
·
2015-08-30 15:00
C++
递归
穷举
四种方法
最大子序列求和
一个字符串常量实验引发的思考
一、实验回顾 有这么一段程序(编译环境vs2013),如下:#include"
stdafx.h
" int_tmain(intargc,_TCHAR*argv[]) { chara[]="abc"; charb
GAMEloft9
·
2015-08-29 16:00
指针算术
#include"
stdafx.h
" #include usingnamespacestd; int_tmain(intargc,_TCHAR*argv[]) { intjay[10]={5,2,8,4,1,2,2,4,6,8
szx1999
·
2015-08-29 14:00
指针算术
一个字符串常量实验引发的思考
一、实验回顾 有这么一段程序(编译环境vs2013),如下:#include"
stdafx.h
" int_tmain(intargc,_TCHAR*argv[]) { chara[]="abc"; charb
GAMELOFT9
·
2015-08-29 00:00
输入一行字符,分别统计出包含英文字母、空格、数字和其它字符的个数-简单题
#include "
stdafx.h
" #include using namespace std; void count(char *c) { if(c==NULL) return; int zimu
ahucsxl
·
2015-08-28 22:00
字符串反转-简单题
#include "
stdafx.h
" #include using namespace std; void reverse(char *start,char*end) { while(start
ahucsxl
·
2015-08-28 22:00
插入排序
// #include "
stdafx.h
" #include using namespace std; void insertSort(int a[], int length) { for(int
ahucsxl
·
2015-08-28 13:00
选择排序
// #include "
stdafx.h
" #include using namespace std; void Swap(int *elem1, int *elem2) { int temp
ahucsxl
·
2015-08-28 11:00
冒泡排序
#include "
stdafx.h
" #include using namespace std; void Swap(int *elem1, int *elem2) { int temp
ahucsxl
·
2015-08-28 10:00
快速排序
// #include "
stdafx.h
" #include using namespace std; int RandomInRange(int min, int max) { int random
ahucsxl
·
2015-08-28 10:00
跨平台c++ Coroutine,仿unity3d实现
不多说,贴代码:4#include"
stdafx.h
" 5#include 6#include 7#include 8 9structICoroutine 10{ 11virtualvoidreset
chunlin
·
2015-08-27 16:00
compareHist函数 例子
// #include"
stdafx.h
" #include #include #include #include #in
qq_18343569
·
2015-08-27 15:00
散列表(哈希表)的实现
// #include"
stdafx.h
" #inclu
u014568921
·
2015-08-26 19:00
散列表
哈希表
排列与组合的实现
// #include"
stdafx.h
" #include #include #include usingnamespacestd; vector>aaa; set>solu; voiddo_once
u014568921
·
2015-08-25 10:00
组合
递归
排列
c++运算符重载
// #include"
stdafx.h
" #include #include #include usingnamespacestd; classMyShape{ protected: intR_,
u014568921
·
2015-08-24 16:00
运算符重载
回溯解决爬楼梯问题
// #include"
stdafx.h
" #include #include #include usingnamespacestd; typedefstd::vectorVecStep; typedefstd
luoyikun
·
2015-08-23 15:00
数据结构
回溯
爬楼梯
二叉树的非递归遍历
// #include"
stdafx.h
" #include #include usingnamespacestd; structBiNOde { intele; BiNOde*lnode
u014568921
·
2015-08-22 22:00
二叉树
遍历
c++/tcl编程总结
*类型test.tclprocadd{abc}{ setd[expr$a+$b+$c] return$d }test.cpp //gettclvalueofvariable.cpp #include"
stdafx.h
Augusdi
·
2015-08-22 20:00
虚函数表是个什么鬼?
// #include"
stdafx.h
" #include usingnamespacestd; classBase1
清风jsliao
·
2015-08-21 17:00
析构函数中的virtual是否必要?
#include"
stdafx.h
"#include usingnamespacestd;classBase1{public:Base1(){cout<<"Base1::Base1()"<
清风jsliao
·
2015-08-21 17:00
2.DB-Mysql++实例
以下为自己写过的测试代码,确认OK以下为自己的数据库:遍历查询代码#include"
stdafx.h
" #include #include #include #include usingstd::cout
hgy413
·
2015-08-21 16:00
[原创]一个C++异常的代替方案
[原创]一个C++异常的代替方案#include "
stdafx.h
"template class E{public: T val; int errcode; E(){} E(const
天下
·
2015-08-21 15:00
leetcode-024 Swap Nodes in Pairs
不说废话,先贴上代码#include"
stdafx.h
" #include #include usingnamespacestd; structListNode { intval; ListNode
hellochenlu
·
2015-08-18 21:00
LeetCode
求最长公共子序列
#include"
stdafx.h
" #include #include usingnamespacestd; deque>comm
u014568921
·
2015-08-17 19:00
最长公共子序列
“
stdafx.h
”: No such file or directory
“
stdafx.h
”:Nosuchfileordirectory一般原因是建工程的时候选择了空工程,然后添加现有源文件(含stdafx.cpp)或者修改了已有的stdafx.cpp或者从项目排除该文件后重新添加
sfqh
·
2015-08-16 20:00
C/C++:内存字节对齐详解
这篇博文其实是上一篇博文:C++笔试总结-面试笔试常考题型(一)指针-引用-宏定义-sizeof 的续篇,忽然发现这是一个问题,所以就整理了下,先看一段代码:例1#include"
stdafx.h
" #
coder_oyang
·
2015-08-13 17:00
sizeof
pack
内存字节对齐
C++笔试总结-面试笔试常考题型(一)指针-引用-宏定义-sizeof
先总结下最近一段时间的笔试总结,知识点:指针与引用;宏定义;结构体字节大小-sizeof1.考察函数参数为指针、引用#include"
stdafx.h
" voidchange(int*a,int&b,
coder_oyang
·
2015-08-12 18:00
面试
指针
sizeof
引用
宏定义
stdafx.h
的作用体会
stdafx.h
的作用体会当使用visualC++时,总是包含了头文件
stdafx.h
,却不知道是干什么用的.哈哈,今天查找了相关资料,解释如下:当我们使用AppWizard来自动生成某些项目的时候,系统会自动把所需要
alex_xhl
·
2015-08-12 10:00
【OpenCV】基于libvlc SDK和Opencv播放rtsp流
vlccore.dll和plugins文件夹,这些可从VLC官网下载安装后导入2、需在VS2013对Opencv进行配置#include#include#include#include"vlc.h"#include"
stdafx.h
某校不良生
·
2015-08-11 15:27
VLC
OpenCV的支持向量机SVM的程序
步骤:1,生成随机的点,并按一定的空间分布将其归类2,创建SVM并利用随机点样本进行训练3,将整个空间按SVM分类结果进行划分,并显示支持向量 [cpp] viewplaincopy#include "
stdafx.h
qq_18343569
·
2015-08-09 21:00
C++那些细节--static关键字
// #include"
stdafx.h
" #include #include usi
puppet_master
·
2015-08-09 17:00
C++
c
静态
编程技巧
static
C++猴子吃桃问题
#include"
stdafx.h
"#includeusingnamespacestd;int_tmain(intargc,_TCHAR*argv[]){inta,b=1,i;for(i=1;i<1
yanglize
·
2015-08-09 10:28
C++
C语言单链表实现19个功能完全详解
#include "
stdafx.h
gengzg
·
2015-08-08 01:00
C语言
<工程数学>Alglib库,测试插值运算
1,线性插值#include"
stdafx.h
" #include #include #include #include"interpolation.h" usingnamespacealglib;
EbowTang
·
2015-08-07 23:00
算法
数学
插值
spline
ffmpeg 自定义数据来源, 可以是文件,可以是内存,可以是网络, 爱咋的咋的
. // #include "
stdafx.h
" extern "C" { #include }; #pragma comment(lib, "avformat.lib") int ReadFunc(
明月惊鹊
·
2015-08-06 11:00
error LNK2005, already defined?
Ihave2filesA.cppandB.cppfilesinaproject"Win32ConsoleApplication".Both2fileshaveonly2linesfollowingcode:#include"
stdafx.h
"intk
tangshuai8888
·
2015-08-05 10:00
C++
error
LINK2005
使用原始套接字实现数据包捕获
//#include"
stdafx.h
"#include"winsock2.h"#include"mstcpip.h"#include"iostream"usingnamespacestd;#pragmacomment
小_小森
·
2015-08-04 20:51
Lua调用C++带参数的方法
// #include"
stdafx.h
" #include #include usingnamespacestd; extern"C" { #include"lua.h" #include"lauxlib.h
ggz631047367
·
2015-08-04 13:00
C++
参数
lua
函数调用
C++对Lua中table进行读取、修改和创建
// #include"
stdafx.h
" #include #include usingnamespacestd; extern"C" { #include"lua.h" #include"lauxlib.h
ggz631047367
·
2015-08-04 11:00
C++
获取
创建
lua
修改
图像处理——光效公式
#include"
stdafx.h
" #include #include #include #include #include #defineGRP(x,y)GetRValue(getpixel
xiao_lxl
·
2015-08-04 11:00
图像处理
一种打印螺旋式矩阵的方法
例如输入5,输出为:24232221200908070619100100051811020304171213141516#include"
stdafx.h
" #include"stdlib.h" int_tmain
bflong
·
2015-08-04 10:00
二维数组
动态
矩阵
螺旋
#include”* .h“ 在查找预编译头使用时跳过
在cpp文件最前一行添加#include"
stdafx.h
" 出现这种情况的解决方法: 在cpp文件最前一行添加 #include "
stdafx.h
"#include "
stdafx.h
" 一定要添加到
coffee死神
·
2015-08-04 10:00
C++获取Lua全局变量和执行Lua多参数多返回值函数
// #include"
stdafx.h
" #include #include usingnamespacestd; extern"C" { #include"lua.h" #include"lauxlib.h
ggz631047367
·
2015-08-04 10:00
C++
函数
lua
全局变量
Opencv调取摄像头失败的处理方法
具体代码如下:#include"
stdafx.h
"#include"opencv/cv.h"#include"opencv/highgui.h"#include"stdio.h"#includeintmain
IDMer
·
2015-08-03 09:08
图像
最小生成树
#include"
stdafx.h
" #include #incl
u014568921
·
2015-08-02 20:00
最小生成树
[算法运用研究]图层混合
// mix.cpp : 图像mix// #include "
stdafx.h
"#include #include "opencv2/core/core.hpp"#include "opencv2/highgui
jsxyhelu
·
2015-08-02 12:00
椭圆扫描 Bresenham算法 VC++
//MytestView.cpp:implementationoftheCMytestViewclass // #include"
stdafx.h
" #include"Mytest.h" #include"math.h
dingding_12345
·
2015-08-02 10:00
vc++
Bresenham算法
椭圆扫描
最短路径问题
#include"
stdafx.h
" #include #include usingnamespacestd; #defineN9 #defineMIN1000000 typedefstruct{ intvexnum
u014568921
·
2015-08-01 23:00
最短路径
上一页
84
85
86
87
88
89
90
91
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他