2022年8月14日

摘要: #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) 编辑