会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
liuyanchao
导航
博客园
首页
新随笔
联系
订阅
管理
公告
2022年8月14日
回溯算法c++
摘要: #include<iostream>using namespace std;#include<string>#include<vector>class Solution{ private: vector<vector<int >> result; vector<int > path; void ba
阅读全文
posted @ 2022-08-14 22:59 qwwqsa
阅读(51)
评论(0)
推荐(0)
编辑
指针常量和常量指针
摘要: #include<iostream> using namespace std; int main() { int m=0; const int n=2;//必须初始化其n不可修改 如像常量一样 // n=3;错误 const int *ptr1 = &m; int a=2; ptr1=&a; //
阅读全文
posted @ 2022-08-14 22:39 qwwqsa
阅读(13)
评论(0)
推荐(0)
编辑