码迷,mamicode.com
首页 >  
搜索关键字:invalid namespace    ( 44721个结果
广度优先搜索求树的深度
#include#include#include#include#include#include#includeusing namespace std;class node{public: int val; node* left; node* right; node():va...
分类:其他好文   时间:2014-05-26 09:10:54    阅读次数:179
字符串转义字符
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleProgamming{ class Program { static void Main(string...
分类:其他好文   时间:2014-05-26 08:00:40    阅读次数:184
opencv学习笔记(05)——操作相邻区域
下面的例子以灰度图像为例:#include #include #include using namespace cv;void sharpen(const cv::Mat& img_original, cv::Mat& img_altered); void sharpen2D(const cv...
分类:其他好文   时间:2014-05-26 07:51:53    阅读次数:283
简单数据类型转换
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace ConsoleProgamming{ class Program { static void Main(string...
分类:其他好文   时间:2014-05-26 07:00:58    阅读次数:182
判断是否AVL平衡二叉书
#include#include#include#include#include#include#includeusing namespace std;class node{public: int val; node* left; node* right; node():va...
分类:其他好文   时间:2014-05-26 06:48:48    阅读次数:246
c++错误及解决方案随记
————string"未定义标识":添加#include using namespace std;————cout"未定义标识":添加#include
分类:编程语言   时间:2014-05-26 06:45:13    阅读次数:205
约瑟夫环 c++ 循环输入
#include#include#include#include using namespace std;template class joseph{ struct node { T data; node * next; node():next(...
分类:编程语言   时间:2014-05-26 06:44:29    阅读次数:390
整理常用函数
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Runtime.InteropServices;namespace WindowsAPI{class CSha...
分类:其他好文   时间:2014-05-24 12:59:58    阅读次数:366
POJ3067 树状数组+逆序数
设两线段为(x1,y1) ,(x2,y2), 若使两线段相交,需使x1y2||x1>x2&&y1 2 #include 3 #include 4 #define MAXH 1005 5 using namespace std; 6 7 int n, m, k; 8 struct mem{ 9 ...
分类:其他好文   时间:2014-05-24 12:43:55    阅读次数:333
ProjectEuler 003题
1 //题目:The prime factors of 13195 are 5, 7, 13 and 29.2 //What is the largest prime factor of the number 600851475143 ? 1 #include 2 using namespace s...
分类:其他好文   时间:2014-05-24 10:01:21    阅读次数:222
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!