03 2017 档案

摘要:#include #include using namespace std; //递归版本 void quickSort(int A[],int s,int t){ if (s >= t){ return; } int i = s; int j = t + 1; while (true){ do{ i... 阅读全文

posted @ 2017-03-29 22:48 codeDog123 阅读(1481) 评论(0) 推荐(0)

摘要:环境变量添加 E:\opencv\build 打开vs2013 1)VC++目录->包含目录 添加 E:\opencv\build\include 2)VC++目录->库目录 添加: D:\opencv\build\x86\vc12\lib 3)链接器->输入->附加依赖项 debug: 添加: o 阅读全文

posted @ 2017-03-20 22:58 codeDog123 阅读(170) 评论(0) 推荐(0)

摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Emgu.CV.Structure; using Emgu.CV.CvEnum; using Emgu.CV; using System.Drawing;... 阅读全文

posted @ 2017-03-20 21:38 codeDog123 阅读(904) 评论(0) 推荐(0)

摘要:算数-整数 算数-分数 算数-小数 算数-实数 算数-幂和根 算数-结合 算数统计 算数-数学运算 代数,方程,不等式 几何-直线,垂线 几何-三角形 几何-多边形 几何-圆 几何-立体几何 几何-几何坐标 实际应用 阅读全文

posted @ 2017-03-20 21:33 codeDog123 阅读(876) 评论(0) 推荐(0)

摘要:Server文件夹下会有一个server.xml文件。 阅读全文

posted @ 2017-03-16 10:51 codeDog123 阅读(1829) 评论(0) 推荐(0)

摘要:using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Data; using System.Data.SQLite; namespace FaceAttendance { class D... 阅读全文

posted @ 2017-03-12 22:04 codeDog123 阅读(252) 评论(0) 推荐(0)

摘要:http://blog.csdn.net/chenchaoxing/article/details/21994601 阅读全文

posted @ 2017-03-05 20:33 codeDog123 阅读(134) 评论(0) 推荐(0)

摘要:(1)json文件中如果出现单个的反斜杠'\',浏览器会报jsonParse error,这是因为反斜杠在json中必须使用''\\'才能正确。 (2)使用string.replaceAll("\\","\")出错。 在regex中"\\"表示一个"\",在java中一个"\"也要用"\\"表示。这 阅读全文

posted @ 2017-03-01 20:15 codeDog123 阅读(235) 评论(0) 推荐(0)

摘要:后端JAVA程序报错: 错误原因有可能是以下几种原因: (1)后端的JAVA类声明的时候忘记extends HttpServlet (2)Web.xml配置文件发生错误,往往是路径没有配置好 阅读全文

posted @ 2017-03-01 20:05 codeDog123 阅读(125) 评论(0) 推荐(0)

导航