虫虫首页| 资源下载| 资源专辑| 精品软件
登录| 注册

Max-Log-Map

  • :: 幻灵私服账号添加Bat工具 Ver1.1 :: 本程序只为幻灵私服添加账号使用 :: Code by Duckyの復活(QQ:462363) :: 转载请保留版权

    :: 幻灵私服账号添加Bat工具 Ver1.1 :: 本程序只为幻灵私服添加账号使用 :: Code by Duckyの復活(QQ:462363) :: 转载请保留版权,谢谢合作! Echo. Echo. Echo ---------------------------------- Echo - 作者的话 - Echo ---------------------------------- Echo. Echo 感谢各位使用本软件 Echo 往后本人会继续开发幻灵相关的工具 Echo 而且都是以开源的形式 Echo 希望大家多多支持 Echo 也希望能吸引更多高手一齐来研究 Echo 通过游戏提高自己的技术 Echo. Echo. 1.1更新: 1、添加ini配置文件 2、自动生成log日志文件 3、附带上mysql.exe,方便远程使用

    标签: 462363 Ducky Code Bat

    上传时间: 2013-12-12

    上传用户:stewart·

  • SQL 合计函数 使用 SQL 合计函数 你可以确定数据组的各种统计。你可以把这些函数用于查询和合计表达式

    SQL 合计函数 使用 SQL 合计函数 你可以确定数据组的各种统计。你可以把这些函数用于查询和合计表达式,条件是在具备 SQL特性的 QueryDef对象中或在创建基于SQL查询的 Recordset对象时。 Avg 函数 Count 函数 First, Last 函数 Min, Max 函数 StDev, StDevP 函数 Sum 函数 Var 和 VarP 函数

    标签: SQL 函数 数据 查询

    上传时间: 2017-01-27

    上传用户:1583060504

  • 设计一个能进行时、分、秒计时的十二小时制或二十四小时制的数字钟

    设计一个能进行时、分、秒计时的十二小时制或二十四小时制的数字钟,并具有定时与闹钟功能,能在设定的时间发出闹铃音,能非常方便地对小时、分钟和秒进行手动调节以校准时间,每逢整点,产生报时音报时。实验平台: 1. 一台PC机; 2. MAX+PLUSII10.1。 Verilog HDL语言实现

    标签: 计时 数字

    上传时间: 2017-01-30

    上传用户:dreamboy36

  • .NET平台下专题地图实现的C#代码 private void 点密度图ToolStripMenuItem_Click(object sender, EventArgs e) {

    .NET平台下专题地图实现的C#代码 private void 点密度图ToolStripMenuItem_Click(object sender, EventArgs e) { //获取当前图层 ,并把它设置成IGeoFeatureLayer的实例 IMap pMap = axMapControl1.Map ILayer pLayer = pMap.get_Layer(0) as IFeatureLayer IFeatureLayer pFeatureLayer = pLayer as IFeatureLayer IGeoFeatureLayer pGeoFeatureLayer = pLayer as IGeoFeatureLayer //获取图层上的feature IFeatureClass pFeatureClass = pFeatureLayer.FeatureClass IFeatureCursor pFeatureCursor = pFeatureClass.Search(null, false) IFeature pFeature = pFeatureCursor.NextFeature()

    标签: ToolStripMenuItem_Click EventArgs private object

    上传时间: 2013-11-27

    上传用户:xlcky

  • 自己做的vhdl课程设计

    自己做的vhdl课程设计,交通灯:实现主干道倒计时,分别为30,20,5秒,分情况:当主干道有车时,红黄绿交替,当只一个道路上有车时,那个道的交通灯变绿色,利用max+plus2做成,使用flex8000,epf8282alc84_4只用加一个38译码器模块即可,使用别的板子也可以运行

    标签: vhdl

    上传时间: 2017-02-03

    上传用户:努力努力再努力

  • c++语言程序设计超级简单了解

    c++语言程序设计超级简单了解,你会惊喜地发现你可以后人乘凉:max是C++标准库的一部分。

    标签: 语言程序设计 超级

    上传时间: 2013-12-15

    上传用户:啊飒飒大师的

  • Description The art galleries of the new and very futuristic building of the Center for Balkan Coop

    Description The art galleries of the new and very futuristic building of the Center for Balkan Cooperation have the form of polygons (not necessarily convex). When a big exhibition is organized, watching over all of the pictures is a big security concern. Your task is that for a given gallery to write a program which finds the surface of the area of the floor, from which each point on the walls of the gallery is visible. On the figure 1. a map of a gallery is given in some co-ordinate system. The area wanted is shaded on the figure 2.

    标签: Description futuristic galleries the

    上传时间: 2017-02-17

    上传用户:1427796291

  • Input : A set S of planar points Output : A convex hull for S Step 1: If S contains no more than f

    Input : A set S of planar points Output : A convex hull for S Step 1: If S contains no more than five points, use exhaustive searching to find the convex hull and return. Step 2: Find a median line perpendicular to the X-axis which divides S into SL and SR SL lies to the left of SR . Step 3: Recursively construct convex hulls for SL and SR. Denote these convex hulls by Hull(SL) and Hull(SR) respectively. Step 4: Apply the merging procedure to merge Hull(SL) and Hull(SR) together to form a convex hull. Time complexity: T(n) = 2T(n/2) + O(n) = O(n log n)

    标签: contains Output convex planar

    上传时间: 2017-02-19

    上传用户:wyc199288

  • Instead of finding the longest common subsequence, let us try to determine the length of the LCS.

    Instead of finding the longest common subsequence, let us try to determine the length of the LCS. 􀂄 Then tracking back to find the LCS. 􀂄 Consider a1a2…am and b1b2…bn. 􀂄 Case 1: am=bn. The LCS must contain am, we have to find the LCS of a1a2…am-1 and b1b2…bn-1. 􀂄 Case 2: am≠bn. Wehave to find the LCS of a1a2…am-1 and b1b2…bn, and a1a2…am and b b b b1b2…bn-1 Let A = a1 a2 … am and B = b1 b2 … bn 􀂄 Let Li j denote the length of the longest i,g g common subsequence of a1 a2 … ai and b1 b2 … bj. 􀂄 Li,j = Li-1,j-1 + 1 if ai=bj max{ L L } a≠b i-1,j, i,j-1 if ai≠j L0,0 = L0,j = Li,0 = 0 for 1≤i≤m, 1≤j≤n.

    标签: the subsequence determine Instead

    上传时间: 2013-12-17

    上传用户:evil

  • 4位电子智能密码锁

    4位电子智能密码锁,基于VHDL语言设计,MAX+PLUSⅡ环境下实现

    标签: 电子 密码锁

    上传时间: 2013-11-30

    上传用户:athjac