摘要:
#include<iostream> using namespace std; int main() { int arr[10]={1,2,3,4,5,6,7,8,9,20}; cout<<"整个数组所占内存空间为"<<sizeof(arr)<<endl; cout<<"每个元素所占内存空间为"<< 阅读全文
2023年6月22日
2023年4月30日
摘要:
#include<iostream> #include<stdio.h> #define MAXSIZE 50 typedef struct { int data[MAXSIZE]; int top; } SqStack; // 初始化栈 void InitStack(SqStack &s) { s 阅读全文
摘要:
1 #include <stdio.h> 2 #include <stdlib.h> 3 4 #define ElemType int 5 6 // 定义队列结点 7 typedef struct QNode 8 { 9 ElemType data; 10 struct QNode* next; 1 阅读全文
摘要:
#include<stdio.h>#include<stdlib.h> typedef struct LinkNode{ int data; struct LinkNode *next; } LinkNode; typedef struct Link{ LinkNode *front,*rear;/ 阅读全文
2023年4月29日
摘要:
#include<stdio.h> #include<stdlib.h> typedef struct LinkNode { int data; struct LinkNode *next; } LinkNode; typedef struct Link { LinkNode *front,*rea 阅读全文
摘要:
进行地址传递是出现报错 临时值不能作为非常量引用参数进行传递 所以需要在main函数中·重新定义指针传递 阅读全文
2022年8月15日
摘要:
#include<iostream> #include<string> #include<map> using namespace std; int main() { // c++ 里面的map容器的迭代器里面 有个first 和 second,分别指向键值和数值 map<string ,strin 阅读全文
摘要:
1.之前运行的程序没有关闭,关闭后即可通过编译。 2.项目中出现了两个main函数入口 阅读全文