GDB 是我们平时调试 c/c++程序的利器, 查起复杂的 bug 问题,比打印大法要好的多,但是也不得不说, gdb 在默认情况下用起来并不是很好用,最近学习到几个高级点的技巧,分享下: 一 美化打印 先上个例子: #include <stdio.h>typedef struct { int i ...
分类:
数据库 时间:
2021-04-12 12:47:30
阅读次数:
0
本场链接:Codeforces Round #713 (Div. 3) A. Spy Detected! #include <bits/stdc++.h> using namespace std; typedef long long ll; #define forn(i,x,n) for(int i ...
分类:
其他好文 时间:
2021-04-12 12:42:16
阅读次数:
0
结构体 结构体是将零个或多个任意类型的命名变量组合在一起的聚合数据类型。每个变量都叫做结构体的成员。 type Employee struct { ID int Name string age int } Employee就是一个结构体。 定义结构体时要注意 1.如果一个成员变量的首字母大写,则它是 ...
分类:
其他好文 时间:
2021-04-12 12:39:35
阅读次数:
0
#include<iostream> #include<algorithm>//sort头文件 using namespace std; struct student{ int theta;//阈值 int result;//结果 }; bool compare(student a,student ...
分类:
编程语言 时间:
2021-04-12 11:39:49
阅读次数:
0
3.1.封装 1、什么是封装: 将函数定义到结构体内部,就是封装。 2、什么是类: 带有函数的结构体,称为类。 3、什么是成员函数: 结构体里面的函数,称为成员函数。 #include<stdio.h> #include<stdlib.h> #include<windows.h> struct St ...
分类:
编程语言 时间:
2021-04-10 12:48:58
阅读次数:
0
1.bss:未初始化区域,bss空间都初始化为零, 字符串只读区在.data区 free当进入主函数开始,主函数结束完毕 struct Student * sp2 = (struct Student*)malloc(sizeof(*sp2)); struct Student * sp3 = (str ...
分类:
编程语言 时间:
2021-04-08 13:42:23
阅读次数:
0
注意是 d < x.d struct Node { int d, e; bool operator < (const Node x) const { return d < x.d; //从小到大排序 } }; ...
分类:
其他好文 时间:
2021-04-08 13:16:49
阅读次数:
0
#include<stdio.h> #include<stdlib.h> #include<string.h> typedef int LDataType; //双向带头循环链表的节点 typedef struct ListNode{ LDataType _data; /*指向下一个节点的起始位置* ...
分类:
其他好文 时间:
2021-04-08 13:00:40
阅读次数:
0
#include<bits/stdc++.h>using namespace std;int maze [5][5] = {0, 1, 0, 0, 0,0, 1, 0, 1, 0,0, 0, 0, 0, 0,0, 1, 1, 1, 0,0, 0, 0, 1, 0,};typedef struct { ...
分类:
其他好文 时间:
2021-04-07 11:33:01
阅读次数:
0
II.[APIO2018] Duathlon 铁人两项 我们考虑对于这样一个三元组$\left<s,c,f\right>$,假如我们固定了$s$和$f$,$c$有多少种可能的取值呢? 显然,$c$的取值等于$s\rightarrow f$的简单路径的并集的大小减$2$,因为$s$和$f$不能作为$c ...