上一页 1 ··· 79 80 81 82 83 84 85 86 87 ··· 94 下一页
摘要: #include <iostream>#include <list>#include <algorithm>#include <string> using namespace std; int main(){ list<string> slist; slist.push_back("A"); sli 阅读全文
posted @ 2019-06-09 15:49 西北逍遥 阅读(305) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-06-08 21:03 西北逍遥 阅读(347) 评论(0) 推荐(0) 编辑
摘要: #pragma oncetemplate<typename T>class smart_pointer{private: T* m_pRawPointer;public: smart_pointer(T* pData) :m_pRawPointer(pData) {} //复制构造函数 smart_ 阅读全文
posted @ 2019-06-08 20:16 西北逍遥 阅读(155) 评论(0) 推荐(0) 编辑
摘要: try { for (int i = 0; i<1000; i++) { test1 = new Test(); cout << i << " new dog success..." << endl; } } catch (bad_alloc err) { cout << "fail:"<<err. 阅读全文
posted @ 2019-06-08 19:22 西北逍遥 阅读(524) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; const int DefaultSize = 10; class Array{public: Array(int itsSize=DefaultSize); ~Array() { delete[] pType; } 阅读全文
posted @ 2019-06-08 17:34 西北逍遥 阅读(853) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <stdio.h> using namespace std; class IOException{};class FileException{};class UndefineError{}; void my_copy(const char* s 阅读全文
posted @ 2019-06-08 16:54 西北逍遥 阅读(1593) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <stdio.h> using namespace std; void my_copy(const char* src_file, const char* dest_file){ FILE *in_file, *out_file; in_fil 阅读全文
posted @ 2019-06-08 16:42 西北逍遥 阅读(1916) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <stdio.h> using namespace std; int my_copy(const char* src_file,const char* dest_file){ FILE *in_file, *out_file; in_file 阅读全文
posted @ 2019-06-08 16:37 西北逍遥 阅读(362) 评论(0) 推荐(0) 编辑
摘要: template<class T> void Queue<T>::Push(const T& item){ /*if (rear == capacity-1) { rear = 0; } else { rear++; }*/ //判断队列是否存满 if ((rear+1)%capacity == f 阅读全文
posted @ 2019-06-07 21:29 西北逍遥 阅读(519) 评论(0) 推荐(0) 编辑
摘要: package com.bim.rrt_20190529; import static java.lang.Math.pow;import static java.lang.Math.sqrt; import java.util.ArrayList; public class Tree { Node 阅读全文
posted @ 2019-06-07 13:10 西北逍遥 阅读(168) 评论(0) 推荐(0) 编辑
摘要: #include<iostream>#include<algorithm>#include<vector>using namespace std; int main(){ vector<int> v1; for(int i=0;i<10;++i) { v1.push_back(i); } for_e 阅读全文
posted @ 2019-06-06 08:55 西北逍遥 阅读(296) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <vector>#include <list> using namespace std; int main(){ vector<int> a; for (int k=0;k<10;k++) { a.push_back(k); } list<ch 阅读全文
posted @ 2019-06-06 08:41 西北逍遥 阅读(3957) 评论(0) 推荐(1) 编辑
摘要: #include <iostream> using namespace std; class AHasPtr {public: AHasPtr(int *p, int i):ptr(p), val(i) {} int getVal() { return this->val; } int *getPt 阅读全文
posted @ 2019-06-05 09:47 西北逍遥 阅读(148) 评论(0) 推荐(0) 编辑
摘要: #include <iostream> using namespace std; class CDemo {public: CDemo(int pa,char *cstr) { this->a = pa; this->str = new char[104]; strcpy(this->str,cst 阅读全文
posted @ 2019-06-05 08:53 西北逍遥 阅读(125) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-06-04 20:30 西北逍遥 阅读(269) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <string>#include <fstream>#include <sstream> using namespace std; template<typename T>int compare(const T &v1, const T &v2 阅读全文
posted @ 2019-06-03 21:15 西北逍遥 阅读(176) 评论(0) 推荐(0) 编辑
摘要: #pragma once#include <iostream>#include <iomanip> using namespace std; template<class T>class Queue{ struct Node { T a; Node *next; }; public: Queue() 阅读全文
posted @ 2019-06-03 20:29 西北逍遥 阅读(342) 评论(0) 推荐(0) 编辑
摘要: #pragma once#include <iostream>#include <iomanip> using namespace std; class Queue{ struct Node { int a; Node *next; }; public: Queue(); void push(int 阅读全文
posted @ 2019-06-03 19:46 西北逍遥 阅读(267) 评论(0) 推荐(0) 编辑
摘要: public slots: //打开Pts文件按钮点击事件 void OnOpenFileButtonClick(); //分析按钮点击事件 void OnAnalysisButtonClick(); //保存按钮点击事件 void OnSaveButtonClock(); //连接按钮点击事件 v 阅读全文
posted @ 2019-06-02 18:52 西北逍遥 阅读(279) 评论(0) 推荐(0) 编辑
摘要: #include <iostream>#include <string>#include <vector>#include <memory> using namespace std; class Person{ public: string name; shared_ptr<Person> moth 阅读全文
posted @ 2019-05-31 15:10 西北逍遥 阅读(293) 评论(0) 推荐(0) 编辑
摘要: #include <string>#include <fstream>#include <memory>#include <cstdio> class FileDeleter{ private: std::string filename; public: FileDeleter(const std: 阅读全文
posted @ 2019-05-31 14:18 西北逍遥 阅读(364) 评论(0) 推荐(0) 编辑
摘要: line: (434,300) (453,144) (0,0,0),(-0.926698,-1.25853,2.032) 0.781452 line: (259,104) (472,107) (-1.14799,-1.27092,2.052),(-1.11387,-1.25048,2.019) 0. 阅读全文
posted @ 2019-05-31 13:57 西北逍遥 阅读(459) 评论(0) 推荐(0) 编辑
摘要: 20:28:54: 为项目RoboticArmProject_CarTerminal_V20190530执行步骤 ...20:28:54: 正在启动 "/usr/bin/make" clean -j4 rm -f moc_predefs.hrm -f moc_mainwindow.cpprm -f 阅读全文
posted @ 2019-05-30 20:33 西北逍遥 阅读(787) 评论(0) 推荐(0) 编辑
摘要: 阅读全文
posted @ 2019-05-29 09:37 西北逍遥 阅读(1404) 评论(0) 推荐(0) 编辑
摘要: PtsData& PtsData::operator=(const PtsData& obj){ return *this;} PtsData::~PtsData(){ } 阅读全文
posted @ 2019-05-28 20:14 西北逍遥 阅读(1056) 评论(0) 推荐(0) 编辑
摘要: CsvWriter csvWriter = new CsvWriter("data2019052803.csv", ',', Charset.forName("UTF-8")); String[] header1 = {"","holdf","holdb","dropf","dropb","swin 阅读全文
posted @ 2019-05-28 15:45 西北逍遥 阅读(251) 评论(0) 推荐(0) 编辑
摘要: https://github.com/spmallick/learnopencv/tree/master/Mask-RCNN https://www.learnopencv.com/deep-learning-based-object-detection-and-instance-segmentat 阅读全文
posted @ 2019-05-27 14:02 西北逍遥 阅读(742) 评论(0) 推荐(0) 编辑
摘要: line: (43,350) (558,350) (-0.448628,-0.554531,0.995),(0,0,0) 0.713282 line: (334,247) (516,244) (-0.605746,-0.552859,0.992),(0,0,0) 0.820111 line: (11 阅读全文
posted @ 2019-05-25 16:47 西北逍遥 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 0--֡ Angle:156.70107362674617 Start_joint_type:20 Center_joint_type:8 end_joint_type:9 x:-0.1622750163078308 y:0.0280570387840271 z:7.600784301757812E 阅读全文
posted @ 2019-05-24 20:36 西北逍遥 阅读(186) 评论(0) 推荐(0) 编辑
摘要: 19:36:14: The program has unexpectedly finished. 19:36:14: The process was ended forcefully.<!--EndFragment--> <!--EndFragment--> 阅读全文
posted @ 2019-05-23 19:39 西北逍遥 阅读(319) 评论(0) 推荐(0) 编辑
上一页 1 ··· 79 80 81 82 83 84 85 86 87 ··· 94 下一页