我知我心
我知我心
全部文章
c++
acm(8)
c语言(29)
django(14)
html,css(9)
javascript(3)
linux(3)
python(30)
剑指offer(6)
动态规划(6)
工具(3)
数据库(2)
数据结构(12)
贪心算法(8)
归档
标签
去牛客网
登录
/
注册
我知我心的博客
全部文章
/ c++
(共10篇)
deepin系统如何编辑运行c++程序
个人博客页面链接:http://www.shihao.online/(django搭建的个人博客,还在完善中) 安装g++: 输入sudo apt-get install g++安装 建立文件:vim 练习.cpp建立一个.cpp文件 输入 i 进入编辑模式 进行编辑 编...
2020-08-21
0
366
多继承时virtual的使用
#include<iostream> using namespace std; class A { public: int a; }; class B:virtual public A { public: int b; }; class C: public A {...
2020-08-21
0
464
c++中string的用法
个人博客页面链接:http://www.shihao.online/ (博客还在开发阶段,欢迎访问) c++学习视频分享(包含c语言和c++基础视频,百度云免费分享): 链接:https://pan.baidu.com/s/1lj3jIp8ISoXgDw463yeE0A 密码:60dl 如果视频...
2020-08-21
0
537
重载重写重定义
#include <iostream> using namespace std; class Base { public: // ========================================================================= ...
2020-08-21
0
648
证明vptr指针的存在
#include<iostream> using namespace std; class parent1 { public: int a; public: virtual void f() { } }; class parent2 { public...
2020-08-21
0
516
STL容器算法迭代器入门
#include<iostream> using namespace std; #include"vector" #include"algorithm" //1:容器中装基础类型变量 void f1() { vector<int&g...
2020-08-21
0
460
vector容器基本用法
#include<iostream> #include"vector" using namespace std; void printV(vector<int> &v1) //用来输出容器 { for (vector<int...
2020-08-21
0
516
deque容器基本操作
#include<iostream> using namespace std; #include"deque" #include"algorithm" void printD(deque<int> &d1) //输出d...
2020-08-21
0
442
stack容器基本操作
#include<iostream> using namespace std; #include"stack" void f1() { stack<int> s1; //入栈 for(int i = 0; i < 10; ...
2020-08-21
0
564
运算符重载
#ifndef ARRAY_H_INCLUDED #define ARRAY_H_INCLUDED #include<iostream> using namespace std; class Array { public: int m_length; //数组的长度...
2020-08-21
0
507