2019年3月6日

leetcode 树类型题

摘要: 树的测试框架: 1 // leetcodeTree.cpp : 定义控制台应用程序的入口点。 2 // 3 4 #include "stdafx.h" 5 #include <iostream> 6 #include <queue> 7 #include <stack> 8 #include <ve 阅读全文

posted @ 2019-03-06 21:29 爱笑的张飞 阅读(239) 评论(0) 推荐(0) 编辑

error LNK2019: 无法解析的外部符号 "class std::basic_ostream<char,struct std::char_traits<char> >

摘要: 1,VS2013: 错误 1 error LNK2019: 无法解析的外部符号 "class std::basic_ostream<char,struct std::char_traits<char> > & __cdecl operator<<(class std::basic_ostream<c 阅读全文

posted @ 2019-03-06 18:19 爱笑的张飞 阅读(9033) 评论(0) 推荐(2) 编辑

VS2013 error C2556: “const int &Array<int>::operator [](int)”: 重载函数与“int &Array<int>::operator [](int)”只是在返回类型上不同

摘要: 1,VS2013 错误 1 error C2556: “const int &Array<int>::operator [](int)”: 重载函数与“int &Array<int>::operator [](int)”只是在返回类型上不同 出错代码: 出错原因: 在 C++ 中,两个只有返回类型不 阅读全文

posted @ 2019-03-06 18:03 爱笑的张飞 阅读(771) 评论(0) 推荐(0) 编辑

c++中的类(class)-----笔记(类模板)

摘要: 1,一个类模板至少具有一个类参数,类参数是个符号以表示将要被某个确定数据类型代替的类型。 1 #include<iostream> 2 #include<string> 3 4 using namespace std; 5 6 template <class T> 7 class Array { 8 阅读全文

posted @ 2019-03-06 17:19 爱笑的张飞 阅读(1395) 评论(0) 推荐(0) 编辑

导航