C语言的一些基础知识

2020/04/04


一些细节

  1. linux下编译运行c++程序

    g++ -W file_name.cpp -o another_name
    ./file_name
    

    -W = 输入错误信息

  2. 字符数组的输入输出

    scanf输入,printf输出

     #include <stdio.h>
     int main(){
         char str[10];
         scanf("%s", str);
         printf("%s", str);
         return 0;
     }
    

    %s识别空格作为字符串的结尾;scanf在使用%s时,对应数组名是不需要加&运算符的。

  3. 数组初始化符号{}

  4. ascii

    A = 65; a: 97

  5. 结构体的初始化

    scanf("%d %c %d", &a, &data, &b);
    node[a] = {data, b, false};  // 注意时花括号,和数组初始化一样。
    
  6. 高位补0与高位补空

printf("%05d", i);  // 使不足5位的整数的高位补0。
printf("%5d", i);  // 使不足5位的整数的高位补为空。
  1. scanf()使用%c可以读入空格,要注意格式!
scanf("%d %c");
  1. 使用new运算符为链表结点分配内存空间

    使用方法:typename *p = new typename;

    例子如下

    int *p = new int;
    node *p = new node;
    int *p = new arr[10000];
    
  2. memset对数组中每一个元素赋相同的值

    格式:memset(name, value, sizeof(name))

    前提条件:添加string.h

    ==建议赋值为0或-1==,不易出错。

c++

1. vector

使用:#include<vector>;除此之外,还需加上using namespace std;

(1)定义
vector<typename> name;

注:其长度可以根据需要进行变化,“变长数组”

(2)vector容器内元素的访问

eg.

vector<typename> vi;
(3)vector常用函数

2. stack

(1)定义

添加#include <stack>using namespace std;

定义写法:

stack<typename> name;
(2)stack容器内元素访问

后进先出,只能通过top()访问栈顶元素。

(3)常用函数

3. string

(1)定义

添加#include <string>using namespace std

string str;

初始化:string str = "abcd";

(2)string中内容访问
(3)常用函数

4. queue

(1)定义

预先条件:

#include <queue>
using namespace std;

queue<typename> name;

(2)容器内元素访问

通过front()访问队首元素,通过back()访问队尾元素。

// queue_test_1
#include <cstdio>
#include <queue>
using namespace std;
int main(){
    queue<int> q;
    for(int i = 0; i < 5; i++) {
        q.push(i);
    }
    printf("%d %d\n", q.front(), q.back());
    return 0;
}
result =
0 4
(3)常用函数
(4)用途

5. algorithm头文件下常用函数

须添加using namespace std;

(1)max()/min()/abs()
(2)swap()
(3)reverse()
(4)sort()
(5)fill
#include <cstdio>
#include <algorithm>
using namespace std;
int main() {
    int a[5] = {1, 2, 3, 4, 5};
    fill(a, a+5, 23);
    for(int i = 0; i < 5; i++) {
        printf("%d ", a[i]);
    }
    return 0;
}
result =
23 23 23 23 23

6. map

翻译为映射。

例如在定义数组时,是定义了一个从intint的映射,如arr[0] = 5是将0映射到5.

map可以将任何基本类型映射到任何基本类型。

(1)定义
(2)容器内元素访问
(3)常用函数