搜索资源列表

  1. PuzzleSolver

    0下载:
  2. 8/15-Puzzle Solver Algorithm: IDA*, A* Heuristic: Pattern Database, Manhattan Distance
  3. 所属分类:JSP源码/Java

    • 发布日期:2024-05-17
    • 文件大小:5741568
    • 提供者:David Hwang
  1. IDA_star

    0下载:
  2. 使用IDA星算法解决八数码问题,效果比A星算法更好,运行速度更快,代码更为简洁,代码用C++语言编写,共包含基础版和测试版两个文件夹,测试版为在所写数据集上测试效果(362880个数据),基础版为人为输入源状态与目标状态,进行转化-IDA Star algorithm using eight digital problem solving, better than the A Star algorithm, run faster, mo
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2024-05-17
    • 文件大小:3944448
    • 提供者:
  1. Tman

    0下载:
  2. Collection off IDC file for ida
  3. 所属分类:其他嵌入式/单片机内容

    • 发布日期:2024-05-17
    • 文件大小:136192
    • 提供者:boza
  1. idasdk65.131213

    0下载:
  2. Interactive Disassembler SDK for IDA 6.5. You need it if you want to develop your own plugin for use in the disassembler
  3. 所属分类:其他小程序

    • 发布日期:2024-05-17
    • 文件大小:16942080
    • 提供者:htk
  1. DumpInfo

    0下载:
  2. he idea behind DumpInfo was to dump only _user_ created information from the disassembly into text a file for your notes or into and IDC scr ipt for porting to a new disassembly. Since the accuracy of IDA is const
  3. 所属分类:Linux驱动

    • 发布日期:2024-05-17
    • 文件大小:9216
    • 提供者:Newdz13
  1. RebuildImports

    0下载:
  2. The IDA Pro Book - Rebuild Process Import Table Example Copyright (C) 2008 Chris Eagle <cseagle@gmail.com> This program is free software you can redistribute it and/or modify it under the terms of the G
  3. 所属分类:Linux驱动

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:Newdz13
  1. smartdec-plugin-v0.0.4-win-qt4.8

    0下载:
  2. Hex-Rays decompiler alternative for IDA 6.5+
  3. 所属分类:Windows编程

    • 发布日期:2024-05-17
    • 文件大小:461824
    • 提供者:The Munsta
  1. HexRaysCodeXplorer

    0下载:
  2. IDA插件HexRaysCodeXplorer. Hex-Rays Decompiler plugin for easier code navigation. Right-click context menu in the Pseudocode window shows HexRaysCodeXplorer plugin commands-HexRaysCodeXplorer ================== He
  3. 所属分类:其他小程序

    • 发布日期:2024-05-17
    • 文件大小:879616
    • 提供者:谢林
  1. idapin

    0下载:
  2. ida pin tracer。 ida pro 调试跟踪工具,pintool方式实现。-This is a PIN tool that is used to connect IDA Pro debugger and PIN. IDA can use PIN to instrument a binary file, trace it, and even debug it. Breakpoints can be added to
  3. 所属分类:其他小程序

    • 发布日期:2024-05-17
    • 文件大小:34816
    • 提供者:谢林
  1. Data-structure-(c)-

    0下载:
  2. 讲述了数据结构中的搜索:深搜,广搜,剪枝,IDA算法,并且包含各类例题。-About the data structure search: search deep, wide search, pruning, IDA algorithm, and contains all kinds of examples.
  3. 所属分类:其他小程序

    • 发布日期:2024-05-17
    • 文件大小:5366784
    • 提供者:司思思
  1. Cavity-Code-LBM-Ida---Revise

    1下载:
  2. lattice boltzmann method for simulation of cavity flow
  3. 所属分类:matlab例程

    • 发布日期:2024-05-17
    • 文件大小:29696
    • 提供者:amin
  1. IDA-User-Tutorial

    0下载:
  2. learning idapro tutorial
  3. 所属分类:软件工程

    • 发布日期:2024-05-17
    • 文件大小:516096
    • 提供者:klatau
  1. ds2000_cybernet_23072013

    0下载:
  2. IDA pro signatures for rigol devices
  3. 所属分类:其他小程序

    • 发布日期:2024-05-17
    • 文件大小:11264
    • 提供者:cybernet
  1. seach

    0下载:
  2. 电脑重启后,FTP服务器就开始运行了,但还要进行一些设置。点击“开始→所有程序→管理工具→Internet信息服务”,进入“Internet信息服务”窗口后,找到“默认FTP站点”,右击鼠标,在弹出的右键菜单中选择“属性”。在“属性”中,我们可以设置FTP服务器的名称-An integrated disassembler/debugger combination such as IDA should be a pretty powerf
  3. 所属分类:GDI/图象编程

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:杨雪
  1. PackerBreaker

    0下载:
  2. Anonymizer for IDA Pro Database files.
  3. 所属分类:软件工程

    • 发布日期:2024-05-17
    • 文件大小:1459200
    • 提供者:asdfere
  1. percpu_ida

    0下载:
  2. Percpu IDA library for Linux v2.13.6.
  3. 所属分类:Linux/Unix编程

    • 发布日期:2024-05-17
    • 文件大小:4096
    • 提供者:mytongvao
  1. 3_cubic_puzzle

    0下载:
  2. 立方数码问题(8数码问题的三维拓展) 使用C/C++实现4个算法,即,使用启发函数h1(n)的A*算法:Astar_h1.cpp,使用启发函数h2(n)的A*算法:Astar_h2.cpp,使用启发函数h1(n)的IDA*算法:IDAstar_h1.cpp,使用启发函数h2(n)的IDA*算法:IDAstar_h2.cpp。输出文件名与算法对应。以h1为启发函数的A*算法输出到output_Ah1.txt;以h2为启发函数的A*算法
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2024-05-17
    • 文件大小:8192
    • 提供者:typ
  1. model

    0下载:
  2. IDA with opensees. this file proper for Incremental dynamic analysis with opensees program
  3. 所属分类:其他小程序

    • 发布日期:2024-05-17
    • 文件大小:1024
    • 提供者:reza
  1. LAPORAN-PROGRAM-LATIHAN-AKADEMIK-1100252-Ida-Pari

    0下载:
  2. example laporan penelitian
  3. 所属分类:软件工程

    • 发布日期:2024-05-17
    • 文件大小:5191680
    • 提供者:Emon
  1. libsb

    0下载:
  2. Certicom library Flexnet SDK for creating IDA signature file.-Certicom library Flexnet SDK for creating IDA signature file.
  3. 所属分类:CA认证

    • 发布日期:2024-05-17
    • 文件大小:395264
    • 提供者:Maximus West
« 1 2 ... 5 6 7 8 9 1011 12 »

源码中国 www.ymcn.org