1 #include<stdio.h> 2 #include<stdlib.h> 3 //系数 coefficient,coef 4 //指数 exponent, expon 5 typedef struct polyNode* polynomial; 6 struct polyNode { 7 i ...
分类:
其他好文 时间:
2020-05-08 12:42:21
阅读次数:
70
比赛链接:https://codeforces.com/contest/1345 A. Puzzle Pieces 题意 给定n,m;问用题中所给图片是否能拼成n行m列的大图片 观察可得当n=1或m=1或n=2且m=2时成立 B. Card Constructions 题意 用n张卡牌搭金字塔,每次 ...
分类:
其他好文 时间:
2020-05-07 23:15:21
阅读次数:
106
1. #include <iostream> #include <map> #include <hash_map> // 对该结构体按照xxx排序,在hash_map中存储name和地址 struct Site { Site(const std::string &n, const std::stri ...
分类:
其他好文 时间:
2020-05-07 22:40:06
阅读次数:
82
环境 1. jdk 7 2. 4.3.24.RELEASE 原因 如果 RestTemplate 的响应是 String 类型,则会将响应交给 StringHttpMessageConverter 进行转化。 StringHttpMessageConverter 默认的编码是 ISO 8859 1, ...
分类:
编程语言 时间:
2020-05-07 13:55:48
阅读次数:
62
static int bnxt_setup_flower(struct net_device *dev, struct tc_cls_flower_offload *cls_flower) { struct tc_mqprio_qopt *mqprio = type_data; struct bnx ...
分类:
其他好文 时间:
2020-05-07 13:33:24
阅读次数:
77
比赛链接:https://codeforces.com/contest/1345 A - Puzzle Pieces 题意 能否用 3 凸 1 凹的拼图拼成 n x m 的图块。 题解 观察发现只可以拼成单独的一行或一列或两行两列。 代码 #include <bits/stdc++.h> using ...
分类:
其他好文 时间:
2020-05-07 09:31:06
阅读次数:
73
``` //单点修改 pushup //查询区间内的最大字段和 #include #include #include #include using namespace std; const int N = 500010; int n, m; int w[N]; struct Node { //端点 ... ...
分类:
其他好文 时间:
2020-05-06 20:03:08
阅读次数:
53
tips 1 关注排名的实现代码。 2 熟练sort的使用。 3 熟练vector的使用。 插入用 题目大意 有n个考场,每个考场有若干数量的考生。现在给出各个考场中考生的准考证号和分数,要求将所有考生按分数从高到低排序,并按顺序输出所有考生的准考证号、排名、考场号、考场内排名。 "原题链接" 思路 ...
分类:
其他好文 时间:
2020-05-06 18:11:30
阅读次数:
54
什么是结构体 结构体是用户定义的类型,表示若干个字段(Field)的集合。 结构体的声明 例如声明一个人, 有年龄age, 身高height, 体重weight, 可以将这三个属性组合在一起 type People struct { age int weight int height int } 上 ...
分类:
编程语言 时间:
2020-05-06 17:59:18
阅读次数:
63
void br_set_state(struct net_bridge_port *p, unsigned int state) { struct switchdev_attr attr = { .orig_dev = p->dev, .id = SWITCHDEV_ATTR_ID_PORT_STP ...
分类:
其他好文 时间:
2020-05-06 13:57:10
阅读次数:
64