码迷,mamicode.com
首页 >  
搜索关键字:typedef struct    ( 24378个结果
双向带头循环链表
#include<stdio.h> #include<stdlib.h> #include<string.h> typedef int LDataType; //双向带头循环链表的节点 typedef struct ListNode{ LDataType _data; /*指向下一个节点的起始位置* ...
分类:其他好文   时间:2021-04-08 13:00:40    阅读次数:0
go语言复制一个struct 对象
package main import ( "log" ) type meta struct { name string age int } func (m *meta) copy(dest *meta) { *dest = *m } func main() { a := meta{name:"aa ...
分类:编程语言   时间:2021-04-07 11:39:03    阅读次数:0
vector用法
#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
[APIO2018] Duathlon 铁人两项
II.[APIO2018] Duathlon 铁人两项 我们考虑对于这样一个三元组$\left<s,c,f\right>$,假如我们固定了$s$和$f$,$c$有多少种可能的取值呢? 显然,$c$的取值等于$s\rightarrow f$的简单路径的并集的大小减$2$,因为$s$和$f$不能作为$c ...
分类:Windows程序   时间:2021-04-07 11:26:11    阅读次数:0
L2-027. 名人堂与代金d券
题目大意 给n个学生的邮箱地址和成绩 和成绩分界点g 名人堂人数k 统计总共发多少奖学金 按要求输出名人堂(成绩从大到小 一样成绩的话按字典序输出) 代码 #include<bits/stdc++.h> using namespace std; struct Node { string s; int ...
分类:其他好文   时间:2021-04-07 11:06:05    阅读次数:0
POJ 1797
求路径中最小值的最大值,应该可以利用网络流的方法解决,不过这道题就利用了dijkstra的方法解决了。 此前POJ 2253利用Floyd方法解决的思路应该也可以应用到这种方法上来 #include <iostream> #include <algorithm> #include <queue> # ...
分类:其他好文   时间:2021-04-07 10:29:27    阅读次数:0
Codeforces Round #568题解
第一次遇到有9题的div2。。。 A题 排序后,伸展两边 #include<bits/stdc++.h> using namespace std; typedef long long ll; typedef pair<int,int> pll; const int N=2e5+10; const i ...
分类:其他好文   时间:2021-04-06 15:06:31    阅读次数:0
Codeforces Round #712 (Div. 2)(A~C)
A. Déjà Vu 本题的思路是找一个位置使得新添加的a所对应的字符不是a即可。 AC代码如下(可能写复杂了): #include<bits/stdc++.h> #define MAXN 300005 using namespace std; typedef long long ll; int t ...
分类:其他好文   时间:2021-04-06 14:48:59    阅读次数:0
C语言中,指针变量的坑
先看一个初始化带头结点单链表的例子,LNode是结点变量,LinkList是结点指针变量,等同于LNode* typedef struct LNode{ // 定义单链表节点类型 int data; struct LNode *next; }LNode,*LinkList; 例1、错误的方法:初始化 ...
分类:编程语言   时间:2021-04-06 14:42:55    阅读次数:0
手写Promise (2)实现then方法
class MyPromise { constructor(executor) { this.state = 'pending'; this.value = null; try { executor(this.resolve.bind(this),this.reject.bind(this)); } ...
分类:其他好文   时间:2021-04-06 14:22:04    阅读次数:0
24378条   上一页 1 ... 18 19 20 21 22 ... 2438 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!