牛客395651087号
牛客395651087号
全部文章
题解
归档
标签
去牛客网
登录
/
注册
牛客395651087号的博客
全部文章
/ 题解
(共5篇)
题解 | #十进制整数转十六进制字符串#
使用algorithm的revers函数反转string 字符串 #include <string> #include<algorithm> using namespace std; string toHexString(int n); int main() { ...
C++
2021-11-07
0
482
题解 | #迭代器遍历容器#
正向迭代和反向迭代 正向: vector::iterator it; begin()指向第一个元素 end()指向最后一个元素的后一个位置 for(it=vc.begin();it!=vc.end();it++) 反向: vector::reverse_iterator itr; for(i...
C++
2021-11-05
10
568
题解 | #加号运算符重载#
运算符重载,函数:return type operator + 运算符 作为类成员函数重载:Time operator + (Time t) 非类成员函数 Time operator+ (Time t1, Time t2) using namespace std; class Time { ...
C++
2021-11-05
1
512
题解 | #友元全局函数#
友元函数,把函数的声明放在类的里面同时在前面加上friend关键字,友元函数虽然不是类的成员函数,但是可以访问类的私有数据 using namespace std; class Person { // write your code here...... friend void s...
C++
2021-11-05
6
562
题解 | #编写函数实现两数交换(指针方式)#
using namespace std; // write your code here...... void swap(int *p, int *q); void swapp(int &a, int &b); int main() { int m, n; ci...
C++
2021-11-04
13
1257