```C++ include include using namespace std; const int INF = 1000000000; //初始化最低油价 struct station{ double oil_price; //加油站油价 int distance; //加油站离出发点的距离 ...
分类:
其他好文 时间:
2019-02-24 10:36:44
阅读次数:
182
关键函数: 1.LoadMap 包含5个函数 1.1 AddLayersBasemap(); 加载底图,暂时用不到 1.2//AddLayerCell(); 添加网图 1.3AddLayerLine(); 界面添加基线参数 1.4AddLayerStation(); 添加基站图层 1.5m_map. ...
分类:
其他好文 时间:
2019-02-24 01:04:39
阅读次数:
420
从树中一个结点到另一个结点之间的分支构成这两个结点之间的路径,路径上的分支数目称作路径长度。树的路径长度是从树根到每个结点的路径长度之和。结点的带权路径长度为结点到树根之间的路径长度与结点上权的乘机,树的带权路径长度为树中所有叶子节点的带权路径长度之和。
分类:
其他好文 时间:
2019-02-21 09:47:18
阅读次数:
188
由于MongoDB.Driver中的Find方法也支持表达式写法,结合【通用查询设计思想】这篇文章中的查询思想,个人基于MongoDB扩展了一些常用的方法。 首先我们从常用的查询开始,由于MongoDB.Driver支持类似于AutoMapper返回的指定属性(Project<TDto>方法),所以 ...
分类:
数据库 时间:
2019-02-19 10:28:41
阅读次数:
173
云计算是什么 一种网络资源的使用模式具有弹性计算,按需付费,快速扩展的特点 云计算的分类 私有云 在自建机房,内部使用。(安全、机密) 公有云 使用云提供商提供的服务。(方便、快捷、免维护) 混合云 上述两者都用 云的解决方案 IAAS(基础设施即服务) 网络、存储、虚拟化资源都不需要关心,只负责操 ...
分类:
其他好文 时间:
2019-02-15 17:35:08
阅读次数:
205
原文地址:WKT、SRID、EPSG概念 EPSG: European Petroleum Survey Group (EPSG), http://www.epsg.org/,它成立于1986年,并在2005年重组为OGP(Internation Association of Oil & Gas P ...
分类:
其他好文 时间:
2019-02-14 11:58:53
阅读次数:
280
Channel Allocation Time Limit: 1000MS Memory Limit: 10000K Total Submissions: 18033 Accepted: 9133 Description When a radio station is broadcasting ov ...
分类:
其他好文 时间:
2019-02-12 21:32:12
阅读次数:
176
"187. Gas Station" / "134. Gas Station" 本题难度: Medium Topic: Greedy Description There are N gas stations along a circular route, where the amount of ga ...
分类:
其他好文 时间:
2019-02-10 20:40:06
阅读次数:
233
算法描述: here are N gas stations along a circular route, where the amount of gas at station i is gas[i]. You have a car with an unlimited gas tank and it ...
分类:
其他好文 时间:
2019-02-06 11:56:04
阅读次数:
96