CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 数值算法/人工智能 搜索资源 - Thread

搜索资源列表

  1. zlib-1.2.2

    0下载:
  2. zlib 1.2.2 is a general purpose data compression library. All the code is thread safe. The data format used by the zlib library is described by RFCs (Request for Comments) 1950 to 1952 in the files http://www.ietf.org/rfc/rfc1950.txt (zlib format), r
  3. 所属分类:压缩解压

    • 发布日期:2008-10-13
    • 文件大小:472.46kb
    • 提供者:fwx
  1. kecsj_java

    2下载:
  2. JAVA课程设计!用线程来实现比较查找、排序算法的运行时间,第一部分是将顺序查找、折半查找算法设计成线程并同时运行来比较两种查找算法,第二部分是将冒泡排序、快速排序及选择排序设计成线程并同时运行来比较三种排序算法。本程序使用流行的GUI界面设计。-Java curriculum design! Using thread to achieve more search, algorithm running time, the first part of the order is to locate,
  3. 所属分类:数据结构常用算法

    • 发布日期:2008-10-13
    • 文件大小:12.56kb
    • 提供者:爱情无敌
  1. VCxiancheng

    1下载:
  2. VC进程和线程的实例(包括使用、终止、调用等)-VC process and thread examples (including the use of the termination, transfer, etc.)
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:572.41kb
    • 提供者:雷晓锋
  1. nihe

    0下载:
  2. 直线拟合与多项式拟合 涉及:《数值计算》等相关课程的基础内容 共两个例子,分别是直线拟合与多项式拟合。 转载自百思论坛 http://www.baisi.net/thread-1270848-1-1.html
  3. 所属分类:数学计算/工程计算

    • 发布日期:2008-10-13
    • 文件大小:88.4kb
    • 提供者:杨一鸥
  1. LZMA压缩/解压缩,接口简单

    0下载:
  2. LZMA压缩/解压缩,接口简单,使用方便,内存占用经过合理安排,效率非常高,支持多线程。,LZMA compress/decompress, interface is very simple, easy to use, high efficiency, lower memory use, support multi thread
  3. 所属分类:压缩解压

    • 发布日期:2017-03-23
    • 文件大小:126.83kb
    • 提供者:江浩
  1. kthread_create

    0下载:
  2. 该函数创建,但并不启动线程,创建完后要通过wake_up_process启动-This function creates, but does not start the thread, create after start through wake_up_process
  3. 所属分类:Data structs

    • 发布日期:2017-04-13
    • 文件大小:2.59kb
    • 提供者:pxxxb
  1. threadpool-0_2_5-src

    0下载:
  2. 多线程编程,线程池类库,boost library封装实现,例程有merge sort-Multi-threaded programming, thread pool library, boost library package implementation, routines have merge sort etc.
  3. 所属分类:Data structs

    • 发布日期:2017-03-23
    • 文件大小:51.31kb
    • 提供者:leo
  1. STLStream

    0下载:
  2. 使用标准模板库流(STL STREAM)来简化C++“线程安全”的日志记录-Logging:Flow using a standard template library (STL STREAM) to simplify the C++ “thread-safe”
  3. 所属分类:STL

    • 发布日期:2017-04-04
    • 文件大小:11.01kb
    • 提供者:刘美娥
  1. Dz7Zip

    2下载:
  2. 7z压缩接口封装成控件(内存加载7Z.DLL 无需安装7Z和 7Z.DLL) 内存封装了 7z.dll 无需安装 7z 无需 7z.dll 支持文件压缩 和文件夹压缩 采用线程池压缩和解压缩技术 -7z compression interface, packaged into control (no need to install memory load 7Z.DLL 7Z and 7Z.DLL) memory encapsulates 7z.dll no 7z.dll w
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-03-22
    • 文件大小:354.64kb
    • 提供者:老夫子
  1. msgQueueClass

    0下载:
  2. 一个多线程安全的消息队列类的实现,依赖于STL库-realization of message queue class in multi-thread enviroment
  3. 所属分类:STL

    • 发布日期:2017-04-04
    • 文件大小:1.14kb
    • 提供者:魏静
  1. audioRecord.tar

    0下载:
  2. android客户端录音并播放,线程录音,以3gp格式保存到SD卡上-the android client recording and playback, the thread recording, 3gp format saved to SD card
  3. 所属分类:Compress-Decompress algrithms

    • 发布日期:2017-11-13
    • 文件大小:199.63kb
    • 提供者:wshy
  1. SortAndLife

    0下载:
  2. Conway s Game of life 算法程序-This article is about a fast Conway s Game of Life version using MFC, thread and DirectX together with a visual demo for sorting algorithms. It is also a good demo for "Bubble" and "Quick Sort" algorithms.
  3. 所属分类:AI-NN-PR

    • 发布日期:2017-03-28
    • 文件大小:362.43kb
    • 提供者:JerryJiang
  1. xianchengtongbu

    0下载:
  2. 在访问临界区的问题当中,因为临界区在一个时间只允许一个进程访问,因此为了解决同步问题,我们要用到线程同步机制。首先创建两个共享数据资源的并发线程。在没有同步控制机制的情况下,观察某些异常现象。针对这样的问题,采用两个解决方案:①利用Windows和mutex机制,②采用软件方案,并比较这两种方案的性能优劣。-During his visit to these critical areas, as critical a time in a process only allows access to
  3. 所属分类:Data structs

    • 发布日期:2017-05-10
    • 文件大小:2.44mb
    • 提供者:小江
  1. thread

    0下载:
  2. 多线程进行二分排序法,递归产生新线程,每一个父线程产生两个子线程,接着父线程对两个子数组进行合并-Multi-thread two hours sorting method, recursive generate a new thread, each thread is a parent produces two sub-threads, then the parent thread to merge the two sub-arrays
  3. 所属分类:Data structs

    • 发布日期:2016-04-18
    • 文件大小:8.31kb
    • 提供者:张韶远
  1. cpp_tracer

    0下载:
  2. Lifitime tracer. *** *** *** *** *** *** *** *** ***** Example: #include <timings.h> void foo() { TRACE_LIFETIME usleep(100000) } void main() { foo() } *** *** *** *** *** *** *** *** *** See lifetimes.log: FUNC
  3. 所属分类:Algorithm

    • 发布日期:2017-03-29
    • 文件大小:5.91kb
    • 提供者:Gosh
  1. DijkstraThreads.tar

    0下载:
  2. Multi Thread Implementation of Dijkstra s Shortest Path Algorithm All-to-all. It reads a file in the format: Edges Nodes start end weight Like this: 20 5 1 2 5 1 3 4 2 1 3 2-Multi Thread Implementation of Dijkstra s Shortest P
  3. 所属分类:Algorithm

    • 发布日期:2017-03-30
    • 文件大小:19.4kb
    • 提供者:j2deme
  1. Thread-Double-Time

    0下载:
  2. 双序遍历,可以对是链式存储的二叉树进行双序遍历-Thread twice
  3. 所属分类:Data structs

    • 发布日期:2017-04-10
    • 文件大小:783byte
    • 提供者:温旺庭
  1. BiTree Thread

    1下载:
  2. 按照某种遍历方式对二叉树进行遍历,可以把二叉树中所有结点排序为一个线性序列。在改序列中,除第一个结点外每个结点有且仅有一个直接前驱结点;除最后一个结点外每一个结点有且仅有一个直接后继结点。这些指向直接前驱结点和指向直接后续结点的指针被称为线索(Thread),加了线索的二叉树称为线索二叉树。-According to some traversal of the binary tree traversal, all nodes in the binary tree sort of a linear
  3. 所属分类:数据结构常用算法

    • 发布日期:2012-12-26
    • 文件大小:1.18kb
    • 提供者:伍恒
  1. MATLAB-identify-thread

    0下载:
  2. MATLAB图像处理——螺纹识别系统 源程序-MATLAB image processing to realize thread to identify the source code
  3. 所属分类:matlab

    • 发布日期:2017-04-03
    • 文件大小:18.22kb
    • 提供者:z
  1. thread-recognition

    0下载:
  2. MATLAB图像处理实现螺纹识别处理的源程序-MATLAB image processing to achieve thread recognition
  3. 所属分类:matlab

    • 发布日期:2017-12-14
    • 文件大小:17.86kb
    • 提供者:聂凯
« 12 3 4 »
搜珍网 www.dssz.com