上一篇文章我们介绍了一个物流服务提供商,推荐大家使用快递鸟接口,主要介绍了如何注册账号,获得密钥,找不到注册地址的,我在发一下: http://kdniao.com/reg 之前也聊过如何利用快递鸟提供的接口来实现即时查询。也提供了C#版本,Java版本,这次我们用PHP来实现接口对接, 在开发之前 ...
``` #include #include #include using namespace std; struct Node{ int x,y; }a[100]; int n; //比较函数 int cmp(Node a,Node b){ if(a.x==b.x)return a.y>n; for... ...
分类:
其他好文 时间:
2020-01-13 20:21:33
阅读次数:
92
T1 P3537 [POI2012]SZA Cloakroom 有n件物品,每件物品有三个属性a[i], b[i], c[i] (a[i]m+s。 2. 所有选出物品的c[i]的和正好是k。 输入输出样例 输入 1 输出 1 正解 将物品按照 a 排序 , 询问按照 m 排序。 这样按顺序枚举询问 ...
分类:
其他好文 时间:
2020-01-11 18:45:03
阅读次数:
85
"T1" 数据范围很合适.. 第一档就是暴力枚举 第二档就是数位DP 第三档就是矩阵乘法 丢一下学长的 "博客" ...
分类:
其他好文 时间:
2020-01-09 21:03:30
阅读次数:
86
首先要使用composer来下载一个第三方扩展就可以实现php的websocket客户端,直接在当前目录生成下composer.json文件就可以了composer require textalk/websocket 配合php的读取文件操作,只读取最新的追加的内容,下面代码为读取日志的客户端 , ...
分类:
Web程序 时间:
2020-01-03 20:58:37
阅读次数:
106
#include <stdio.h> #include <stdlib.h> #include <string.h> const int N = 10; // 定义结构体类型struct student,并定义其别名为STU typedef struct student { long int id; ...
分类:
其他好文 时间:
2020-01-01 11:44:08
阅读次数:
63
#include <stdio.h> #include <stdlib.h> #include <string.h> const int N = 10; // 定义结构体类型struct student,并定义其别名为STU typedef struct student { long int id; ...
分类:
其他好文 时间:
2020-01-01 00:00:59
阅读次数:
97
《实验七》 验证性实验1: 验证性内容2: 验证性内容3: 验证性内容4: 以二进制形式存入file4.dat后,内容不可以直接读出 编程练习: #include <stdio.h>#include <stdlib.h>#include <string.h>const int N = 5;typed ...
分类:
其他好文 时间:
2019-12-31 17:08:02
阅读次数:
83
#include <iostream> #include <cmath> #include <cfloat> #include <cstdlib> #pragma warning(disable: 4996) #pragma warning(disable: 4305) #pragma warnin ...
分类:
编程语言 时间:
2019-12-27 23:20:51
阅读次数:
89
c语言文件 任务1 你现在拥有一个数组,数组中储存着总共10个人的姓名字符串 你需要为每个人创建一个txt文件,以他们的名字命名。 生成效果如下 代码如下 include include include include struct stu { char id[100]; char name[30] ...
分类:
编程语言 时间:
2019-12-21 11:52:13
阅读次数:
91