搜索结果
找到约 13,711 项符合
e-a 的查询结果
TAPI编程 siptapi A TAPI driver for SIP. With this TAPI driver you have a click2dial feature with any TAPI en
siptapi
A TAPI driver for SIP. With this TAPI driver you have a click2dial feature with any TAPI enabled application (e.g. MS Outlook) and any SIP account (e.g. freeworlddialup or iptel.org).
软件工程 “网络基本输入/输出系统”(Network Basic Input/Output System, NetBIOS)是一种标准的应用程序编程接口( A P I)
“网络基本输入/输出系统”(Network Basic Input/Output System, NetBIOS)是一种标准的应用程序编程接口( A P I),1 9 8 3年由S y t e k公司专为I B M开发成功)
编译器/解释器 UC Library Extensions UnderC comes with a pocket implementation of the standard C++ libraries, wh
UC Library Extensions
UnderC comes with a pocket implementation of the standard C++ libraries, which is a reasonably faithful subset. This documentation describes those UnderC functions and classes which are not part of the C++ standard.
UC Library
Builtin functions:
Most of these are standard C ...
其他数据库 )一个PB的应用程序, 能实现以下功能: a.新增员工资料 b.修改员工资料 c.删除员工资料 d.按姓名查找员工资料(能模糊查找, 例如输入"林", 则所有姓或名中含有"林"字的
)一个PB的应用程序, 能实现以下功能:
a.新增员工资料
b.修改员工资料
c.删除员工资料
d.按姓名查找员工资料(能模糊查找, 例如输入"林", 则所有姓或名中含有"林"字的
员工全列出来.)
e.系统启动时, 针对今天为该员工生日的, 则自动弹出提示进行祝福.
2) 员工资料的数据必须有: 工号(为主键), 姓名, 出生日期, 入职日 ...
Java编程 today bought a book, reflected good to upload source code package. 1. Based on the struts of custome
today bought a book, reflected good to upload source code package. 1. Based on the struts of customer information management system 2. Struts-based personnel management system 3. Office log system 4. E-government management system 5. Food industry Invoicing System 6 SMS Data Acquisition System
其他 TFIND searches for one or more strings (boolean AND) in a text file. TFIND reports all lines whe
TFIND
searches for one or more strings (boolean AND) in a text file.
TFIND reports all lines where the string(s) were found (or NOT found
by option).
The search can be limited to a field in a fixed field (i.e. column
oriented) list.
An extended search mode is available, where only letters an ...
matlab例程 这是一个模拟第3类模式地震波的matlab脚本。 This a collection of Matlab scripts that solve the antiplane (mode III)
这是一个模拟第3类模式地震波的matlab脚本。
This a collection of Matlab scripts that solve the antiplane
(mode III) earthquake dynamic problem with slip-weakening friction,
on a 1D fault embedded in a 2D homogeneous elastic unbounded medium.
The problem is formulated as a boundary integral equation
...
数学计算 n皇后问题求解(8<=n<=1000) a) 皇后个数的设定 在指定文本框内输入皇后个数即可,注意: 皇后个数在8和1000 之间(包括8和1000) b) 求解 点击<
n皇后问题求解(8<=n<=1000)
a) 皇后个数的设定
在指定文本框内输入皇后个数即可,注意: 皇后个数在8和1000 之间(包括8和1000)
b) 求解
点击<Solve>按钮即可进行求解.
c) 求解过程显示
在标有Total Collision的静态文本框中将输出当前棋盘上的皇后总冲突数.
当冲突数降到0时,求解完毕.
d) 求解结果显示
程序可以图形化显示8< ...
编译器/解释器 文件名 :test3.c * 文件描述:预测分析法实现的语法分析器。分析如下文法: * E->E+T | E-T | T * T->T*F | T/F |F *
文件名 :test3.c
* 文件描述:预测分析法实现的语法分析器。分析如下文法:
* E->E+T | E-T | T
* T->T*F | T/F |F
* F->(E) | i
* 输入:每行含一个表达式的文本文件(#号结束)。
* 输出:分析成功或不成功信息。
* 创建人:余洪周 <nick19842000.cublog.cn> 2006-12-16
* 版本号:1.0
* 说明 :为了 ...
书籍源码 Floyd-Warshall算法描述 1)适用范围: a)APSP(All Pairs Shortest Paths) b)稠密图效果最佳 c)边权可正可负 2)算法描述: a)初始化:d
Floyd-Warshall算法描述
1)适用范围:
a)APSP(All Pairs Shortest Paths)
b)稠密图效果最佳
c)边权可正可负
2)算法描述:
a)初始化:dis[u,v]=w[u,v]
b)For k:=1 to n
For i:=1 to n
For j:=1 to n
If dis[i,j]>dis[i,k]+dis[k,j] Then
Dis[I,j]:=dis[I,k]+dis[k,j]
c)算法结束:dis即为所有点对的最短路径矩阵
3)算法小 ...