剑指offer(纪念版)读书笔记【实时更新】

时间:2024-09-29 00:04:50

C++

1.STL的vector每次扩充容量,新容量是前一次的两倍。

2.32位机指针大小为4个字节,64位机指针大小为8个字节。

3.当数组作为函数参数传递时,数组会自动退化成同类型指针。

4.

""占11个字节,因为有'\0'。
如果定义char a[];
strcpy(str,"");// 将会导致字符串越界。

5.

//定义数组为先申请空间,再把内容复制到数组中
char str1[] = "hello world";
char str2[] = "hello world"; //定义指针时为将内容放在一个固定内存地址,所以str3和str4只想同一个"hello world"
char* str3 = "hello world";
char* str4 = "hello world"; //比较的是地址,如果要比较内容需要调用库函数
if(str1 == str2){
cout << "str1 == str2" << endl;
}else{
cout << "str1 != str2" << endl;
} if(str3 == str4){
cout << "str3 == str4" << endl;
}else{
cout << "str3 != str4" << endl;
}

输出结果为:

剑指offer(纪念版)读书笔记【实时更新】

6.