题意: n个无线AP,有xy坐标属性,现在n个无线AP要桥接在一起不能断开连接,现在要求无线AP无线网络的覆盖半径最小是多少 分析: 看起来是像是最小生成树,这里是是求生成树中最长的边最短,就是最小瓶颈生成树。 可以证明最小瓶颈生成树就是最小生成树,详细看刘汝佳《算法入门经典训练指南》343页。 当 ...
分类:
其他好文 时间:
2017-04-30 17:17:37
阅读次数:
211
安装mysql之前要remove掉系统自带的mysql: rpm -qa | grep "MySQL*" 和rpm -qa | grep mysql 要确保卸载干净 rpm -e MySQL-server-5.1.74-1.el6.x86_64.rpm --nodeps mysql这里使用rpm 安 ...
分类:
数据库 时间:
2017-04-27 15:32:28
阅读次数:
209
mysql时点还原全备+binlog的快速方法 适合mysql版本:4.1~5.7 所有数据库机器损坏,只有全备和binlog情况下恢复数据库到某个时间点 方法1:全备+binlog server 准备两台机器:binlog server机器,恢复机器 1、构造binlog server把所有的bi ...
分类:
数据库 时间:
2017-04-25 00:47:07
阅读次数:
316
问题1:进入slave服务器,运行:mysql>showslavestatus\G.......Relay_Log_File:localhost-relay-bin.000001Relay_Log_Pos:151Relay_Master_Log_File:localhost-bin.000002Slave_IO_Running:YesSlave_SQL_Running:NoReplicate_Do_DB:Replicate_Ignore_DB:......解决办法一、..
分类:
数据库 时间:
2017-04-22 14:47:16
阅读次数:
246
IFeatureLayer layer = FrmMain.m_mapControl.get_Layer(0) as IFeatureLayer; IFeatureClass featureClass = layer.FeatureClass; IFeature feature = featureC... ...
分类:
其他好文 时间:
2017-04-16 12:00:12
阅读次数:
155
1.通过realy机器登录relay-shell 2.登录了跳板机之后,连接可以用的机器 3.在本地的idea生成好程序的jar包(word-count_2.11-1.0.jar)之后,把jar包和需要put到远程机器的hdfs文件系统中的文件通过scp命令从开发机传到远程的机器中 4.通过put命 ...
分类:
其他好文 时间:
2017-04-05 22:29:00
阅读次数:
242
Continuing our previous post https://nishantrana.me/2017/03/22/configure-dynamics-365-and-azure-service-bus-integration-through-queue-and-queueclient/ ...
分类:
其他好文 时间:
2017-04-03 14:40:06
阅读次数:
210
Let us pick up from where we left in the previous post and implement two way relaying through which we can get the response back from the listener. ht ...
分类:
其他好文 时间:
2017-04-03 14:39:31
阅读次数:
194
1. 前言 1.1 目的 本文档主要介绍zabbix监控系统的具体配置和添加主机方法。 1.2 术语 Templates,Hostgroups, Web, Triggers, Graps,screens,Actions 1.3 适用版本 RHEL6.2系统 1.4 阅读范围 本文适合运维组成员阅读。 ...
分类:
其他好文 时间:
2017-03-19 17:23:27
阅读次数:
305
我们将创建一个新的微服务,命名为product-api,作为一个外部API(OAuth 术语为资源服务器-Resource Server),并通过之前介绍过的Edge Server暴露为微服务,作为Token Relay,也就是转发Client端的OAuth访问令牌到资源服务器(Resource S... ...