-
A*算法属于一种启发式搜索。它扩展结点的次序类似于广度优先搜索,但不同的是每生成一个子结点需要计算估价函数F,以估算起始结点到该结点的代价及它到达目标结点的代价...
A*算法属于一种启发式搜索。它扩展结点的次序类似于广度优先搜索,但不同的是每生成一个子结点需要计算估价函数F,以估算起始结点到该结点的代价及它到达目标结点的代价的和;每当扩展结点时,总是在所有待扩展结点中选择具有最小F值的结点作为扩展对象,以便使搜索尽量沿最有希望的方向进行。 -A* algorithm is a heuristic search. It extended node in the order of priority similar to the breadth of search, but in every generation is a sub-node calculated valuation function F, to estimate initial node to the node, the price and it arrived at the target node, and the price; Whenever expansion node, the question has always extended to all nodes with the smallest choosing F value of the node as expansion targets, in order to search as far as possible along the most promising direction.
- 2023-01-19 07:50:04下载
- 积分:1
-
SMD electrolytic capacitor specifications, providing complete capacitor size of...
贴片电解电容的规格书,提供完成的电容尺寸数据,方便应用-SMD electrolytic capacitor specifications, providing complete capacitor size of data, facilitating the application
- 2023-07-17 04:50:03下载
- 积分:1
-
航空定票系统
有退票定票 远程打印
报表显示 asp .net运行环境...
航空定票系统
有退票定票 远程打印
报表显示 asp .net运行环境-air ticket system for ticket refunds Remote Print statements asp. Net operating environment
- 2022-01-27 18:06:14下载
- 积分:1
-
ruby 示例
create.rb
在Oracle中建立一个叫test的表,并插入一条记录。
locreate.rb
在Oracle...
ruby 示例
create.rb
在Oracle中建立一个叫test的表,并插入一条记录。
locreate.rb
在Oracle中建立一个叫test的表(表中有一个大字段),并插入一条记录。
trans.rb
遍历目录(包括所有子目录)中的某种类型的文件,将符合条件的内容取
出放在一个新文件中,最后,用新文件替换旧文件。
mksql.rb
根据class.def文件的定义,生成各表的insert语句。
ie.rb
打开ie浏览器,进入新浪主页,关闭浏览器。
ienavi.rb
打开ie浏览器,并监控你所进入的URL。
每当进入一个新的URL,监控窗口会将URL立即打印出来。
当退出ie时,将所有进入过的URL一起打印出来。
oledirs.rb
分别打印出当前目录下的所有子目录及文件。
mkfile.rb
根据jxkh.def的定义,生成数据库表的查看、对照查看页面。-err
- 2023-07-08 06:30:03下载
- 积分:1
-
A sample export IE favorite to XML format
A sample export IE favorite to XML format
- 2023-01-17 08:30:04下载
- 积分:1
-
VB窗体滚动条控件写的一个简单的应用实例附上…
VB窗体滚动条控件,简单写一应用实例附上源代码,从截图就可以看出,是不是有点个性?上侧的滚动条是不能拖动的,可以作为指示用,类似进度条的功能,拖动下边的滚动条,上边的会自动指示出滚动条拖动的大致位置,还有中间滚动、两侧滚动,使用方法比较多,慢慢研究吧。
-VB Forms scroll bar controls to write a simple application example to attach the source code, from the screenshot you can see, is not it a little personality? On the side of the scroll bar is not drag, and can be used as direct use, similar to the function of the progress bar, drag the bottom of the scroll bar, above the scroll bar will automatically indicate the general location of drag, as well as the middle of rolling on both sides of Scroll, using methods are more leisurely study bar.
- 2022-04-20 00:57:38下载
- 积分:1
-
汉字字频表,统计了汉字的字频,在和多领域都有用途。
汉字字频表,统计了汉字的字频,在和多领域都有用途。-Chinese word frequency table, statistics of the Chinese word frequency, in and multi-purpose fields.
- 2022-08-19 18:42:50下载
- 积分:1
-
thunk是一组动态生成的ASM指令,它记录了窗口类对象的this指针,并且这组指令可以当作函数,既也可以是窗口过程来使用。thunk先把窗口对象this指针记...
thunk是一组动态生成的ASM指令,它记录了窗口类对象的this指针,并且这组指令可以当作函数,既也可以是窗口过程来使用。thunk先把窗口对象this指针记录下来,然后转向到静态stdProc回调函数,转向之前先记录HWND,然后把堆栈里HWND的内容替换为this指针,这样在stdProc里就可以从HWND取回对象指针,定位到WindowProc了-thunk is a group of dynamically generated ASM command, it records the window class object this pointer, and this group of commands can be used as a function of both the process can also be a window to use. thunk first window object this pointer record, and then shifted to the static callback function stdProc, before turning record HWND, and then the contents of the stack where HWND replace this pointer, so in stdProc can retrieve the object from the HWND pointer, locate the WindowProc
- 2022-08-09 23:02:21下载
- 积分:1
-
通过线程来实现共享,包括threads_demo.zip和threads_src.zip,使用VC++编程。...
通过线程来实现共享,包括threads_demo.zip和threads_src.zip,使用VC++编程。-Through the thread to achieve sharing, including threads_demo.zip & threads_src.zip, using VC++ programming.
- 2023-01-26 11:35:29下载
- 积分:1
-
人脸检测 识别
这个是基于facebook刚刚收购的face.com的api接口实现的
调用接口,传一个图片的url地址,返回图像的特征字符串,如,性别,是否笑,是否带眼镜,眼镜的位置,鼻子的位置,嘴边的位置 等等信息。
需要到官方网站申请下 API key 哦,很简单,一分钟搞定。下过已经加入了key
- 2022-03-22 08:15:14下载
- 积分:1