码迷,mamicode.com
首页 >  
搜索关键字:typedef struct    ( 24378个结果
[Trie树]C. 【例题3】最长异或路径
解析 这道题我觉得恶心的地方就是要求一整条边的边权的异或给搞出来, 注意运算符不要用错了。 Code #include <bits/stdc++.h> #define N 100005 using namespace std; struct node { int x, to, nxt; }hd[N ...
分类:其他好文   时间:2021-06-13 10:42:08    阅读次数:0
实验六
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 10 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20 ...
分类:其他好文   时间:2021-06-11 18:28:53    阅读次数:0
实验6 结构体
实验任务1 // P280例8.15 // 对教材上的程序作了微调整,把输出学生信息单独编写成一个函数模块 // 打印不及格学生信息和所有学生信息程分别调用 #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // ...
分类:其他好文   时间:2021-06-11 18:27:55    阅读次数:0
实验六 结构体
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:其他好文   时间:2021-06-11 18:23:03    阅读次数:0
实验6
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20] ...
分类:其他好文   时间:2021-06-11 18:22:43    阅读次数:0
河工大第一届校赛 D.公园游玩(组合数计算)
题目:公园游玩 题意:依次经过k个点,求出其最短总路径的方案数. 题解:点A(x1,y1)到点B(x2, y2)的最短距离方案数为(高中组合知识:距离为n,向下走m次到达目的地最短距离的方案数): n = x2 - x1 + y2 - y1 m = x2 - x1 C(n, m) = n! / (m ...
分类:其他好文   时间:2021-06-11 18:22:12    阅读次数:0
实验6 结构体
1. #include<stdio.h>#include<stdlib.h>#include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 typedef struct student { int id; /*学生学号 */ char name[20 ...
分类:其他好文   时间:2021-06-11 18:20:49    阅读次数:0
实验六
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 4 typedef struct student { int id; /*学生学号 */ char name[20]; /*学生姓名 */ char subject[2 ...
分类:其他好文   时间:2021-06-11 18:15:08    阅读次数:0
栈的基本操作(链表)
栈的链表的操作和线性表的链式存储结构差不多。 我们用图来形象表达一下 线性表的顺序存储结构: 链栈: 链栈的基本操作有栈的初始化、插入数据、删除数据、遍历栈 对应的代码为: //栈的初始化 int InitStack(Stack *stack){ stack->top=stack->bottom=N ...
分类:其他好文   时间:2021-06-11 18:10:14    阅读次数:0
实验六
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 typedef struct student{ int id; char name[20]; char subject[20]; float perf; float ...
分类:其他好文   时间:2021-06-11 18:08:13    阅读次数:0
24378条   上一页 1 ... 5 6 7 8 9 ... 2438 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!