CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 源码下载 搜索资源 - stdlib

搜索资源列表

  1. stdlib.rar

    0下载:
  2. 所属分类:数据库编程

    • 发布日期:
    • 文件大小:57.21kb
    • 提供者:
  1. BPprog

    0下载:
  2. BP算法最新C源程序, #include\"stdarg.h\" #include\"stdio.h\" #include\"stdlib.h\" #include\"math.h\" #include\"graphics.h\" #include\"conio.h\" #define IN 4 /*输入层的神经元个数*/ #define HID 13 /*隐含层的神经元个数*/ #define MOD 594 /*学习样本个数*/ #define OUT
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2.89kb
    • 提供者:陈光华
  1. percept

    0下载:
  2. 感知器的VC实现#include \"percept.h\" #include \"stdio.h\" #include \"stdlib.h\"-perception of VC# include "percept.h" # include "stdio.h" # include "stdlib.h"
  3. 所属分类:人工智能/神经网络/遗传算法

    • 发布日期:2008-10-13
    • 文件大小:3.32kb
    • 提供者:沈来信
  1. this-is-a-sound-code-of-image-enhancement-based-on

    0下载:
  2. 小波变换的C源代码 #define N0 128 #include \"stdio.h\" #include \"stdlib.h\" #include \"math.h\" #include \"string.-wavelet transform C source code # define N0 128 # include "stdio. h "# include" stdlib.h "# include" math.h
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:3.54kb
    • 提供者:郑超
  1. ghgl

    0下载:
  2. #include <stdio.h> #include <stdlib.h> #define N 3 struct huowu {char num[10] char name[8] int money[3] int amount[3] }huo[N],temp -# include
  3. 所属分类:数据库编程

    • 发布日期:2008-10-13
    • 文件大小:1.65kb
    • 提供者:liu hui
  1. quanpaixu

    0下载:
  2. 冒泡排序 直接选择排序 Shell排序 快速排序 归并排序 堆排序 直接插入排序基本算法 #include<iostream.h> #include<stdlib.h> #include<time.h> const int n=100000 typedef struct{ int key }RedType typedef struct{ RedType *r //r[n+1
  3. 所属分类:C#编程

    • 发布日期:2008-10-13
    • 文件大小:703.68kb
    • 提供者:zero
  1. libc

    1下载:
  2. vxworks libc库源代码,标准C代码库实现 assert ctype locale math setjmp stdarg stdio stdlib string time -vxworks libc the source code, standard C code library to assert ctype locale math setjmp stdar g stdio stdlib string time
  3. 所属分类:操作系统开发

    • 发布日期:2008-10-13
    • 文件大小:310.63kb
    • 提供者:王七
  1. 332658

    0下载:
  2. #include <stdio.h> #include <string.h> #include <stdlib.h> #include <malloc.h> #include <math.h> #include <conio.h> struct DuLNode{ struct DuLNode *prior int data struct DuLNode *next-# in
  3. 所属分类:其它

    • 发布日期:2008-10-13
    • 文件大小:2.93kb
    • 提供者:黄宇
  1. linux_c_s

    0下载:
  2. 基于终端的订花系统_socket #include<stdio.h> #include<stdlib.h> #include<errno.h> #include<string.h> #include<sys/types.h> #include<netinet/in.h> #include<sys/socket.h> #include<sys/wait.h>
  3. 所属分类:Internet/网络编程

    • 发布日期:2008-10-13
    • 文件大小:3.84kb
    • 提供者:xxf
  1. shu

    0下载:
  2. 1.[问题描述] 编写递归算法,计算二叉树中叶子结点的数目 [输入] 按照先序序列的顺序输入该结点的内容。其输入abd eh cf i g . [输出] 按中序序列输出,输出的结果为;dbheaficg并计算出二叉树中叶子结点的数目为4 [存储结构] 采用二叉表存储 [算法的基本思想] 采用递归方法建立和遍历二叉树。首先建立二叉树的根结点,然后建立其左右子树,直到空子树为止,中序遍历二叉树时,先遍厉左子树,后遍厉右子树,最后访问根结点。根据左右子树的最后一个
  3. 所属分类:数据结构常用算法

    • 发布日期:2014-01-15
    • 文件大小:7.94kb
    • 提供者:Demonic
  1. chazhao

    0下载:
  2. [问题描述] 在二叉排序树中查找关键字为KEY的记录 [输入] 有序表输入要查找元素的关键字 [输出] 查找成功是即可显示查找成功 #include <stdlib.h> #include <stdio.h> typedef int KeyType typedef struct{ -[Problem Descr iption] Binary Tree ranking keyword search for the rec
  3. 所属分类:数据结构常用算法

    • 发布日期:2014-01-15
    • 文件大小:13.33kb
    • 提供者:Demonic
  1. process

    0下载:
  2. #include <string.h> #include <fstream.h> #include <stdio.h> #include <stdlib.h> #define FINISH 0 //完成状态 #define RUNNING 1 //运行状态 #define READY 2 //就绪状态 #define WAITIO 3 //io等待状态 #define WAITREAD 4//读写等待状态
  3. 所属分类:进程与线程

    • 发布日期:2008-10-13
    • 文件大小:2.34kb
    • 提供者:鹰隼
  1. cc

    0下载:
  2. 分析的是实例 #include<stdio.h> #include<stdlib.h> typedef struct BST* tree_pointer //定义数据类型 typedef struct BST{ int key tree_pointer left tree_pointer right }BST tree_pointer CreateBST(tree_pointer root, int data)
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-07
    • 文件大小:71.33kb
    • 提供者:林明
  1. stdlib

    0下载:
  2. C库基本函数的实现过程,都是标准C的函数,写的很好的-C library implementation process of the basic functions are standard C functions, written in good
  3. 所属分类:matlab

    • 发布日期:2017-03-29
    • 文件大小:183.18kb
    • 提供者:liqing
  1. string-functions-using-both-user-defined-a-stdlib

    0下载:
  2. string functions using both user defined & stdlib
  3. 所属分类:Windows Develop

    • 发布日期:2017-03-29
    • 文件大小:1.79kb
    • 提供者:Ahmad
  1. stdlib

    0下载:
  2. 这是一个c的标准函数库 对大家可能有帮助 -this is stdlib and it is helpful to you
  3. 所属分类:Windows Develop

    • 发布日期:2017-06-10
    • 文件大小:16.35mb
    • 提供者:吗是
  1. stdlib

    1下载:
  2. visual studio 2005 stdlib.h 文件 如果你的文件不小心毁坏了。。可以用这个-visual studio 2005 stdlib.h file
  3. 所属分类:Windows Kernel

    • 发布日期:2017-04-02
    • 文件大小:7.33kb
    • 提供者:t
  1. stdlib

    0下载:
  2. wchar_t is required in stdlib.h according to POSIX. note that defining __need_wchar_t prevents stddef.h to define all other symbols it does normally.
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-15
    • 文件大小:5.55kb
    • 提供者:vounaiher
  1. stdlib

    0下载:
  2. Full code and declaration for stdlib header
  3. 所属分类:其他

    • 发布日期:2018-04-20
    • 文件大小:8kb
    • 提供者:Veator
  1. kotlin-stdlib-1.2.21-sources

    0下载:
  2. Kotlin 标准库 kotlin-stdlib-1.2.21-sources 源码分析(Kotlin Standard library kotlin-stdlib-1.2.21-sources source analysis.)
  3. 所属分类:android开发

    • 发布日期:2018-04-30
    • 文件大小:310kb
    • 提供者:LeonWilliam
« 12 3 4 5 6 7 8 »
搜珍网 www.dssz.com