Location:
Search - STDLIB.H
Search list
Description: 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 1 /*输出层的神经元个数*/-BP algorithm latest C source, # include "stdarg.h" # include "stdio.h" # include "stdlib.h" # include "math.h" # include "graphics.h" # include "conio.h" # define IN 4 / * input layer neurons number * / # define HID 13 / * hidden layer neuron number * / # define MOD 594 / * Number of samples * / # define OUT 1 / * output layer neurons number * /
Platform: |
Size: 2958 |
Author: 陈光华 |
Hits:
Description: 感知器的VC实现#include \"percept.h\"
#include \"stdio.h\"
#include \"stdlib.h\"-perception of VC# include "percept.h" # include "stdio.h" # include "stdlib.h"
Platform: |
Size: 3396 |
Author: 沈来信 |
Hits:
Description: 小波变换的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 "# inc lude "string.
Platform: |
Size: 3630 |
Author: 郑超 |
Hits:
Description: #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
Platform: |
Size: 1694 |
Author: liu hui |
Hits:
Description:
冒泡排序
直接选择排序
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]
int length
}SqList
int random()
void InsertSort(SqList &L)
void main(){
SqList L
L.r = new RedType[n+1]
L.length=n
for(int i=1 i<=n i++) L.r[i].key=random()
long t1,t2
t1=clock()
InsertSort(L)
t2=clock()
cout<<\" 时间: \"<<float(t2-t1)/CLK_TCK<<endl
}
-Bubble Sort direct selection Shell Ranking Ranking Ranking Rapid Merging Sort Heap Sort basic ordering directly inserted Algorithm # include
Platform: |
Size: 720567 |
Author: zero |
Hits:
Description: 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 1 /*输出层的神经元个数*/-BP algorithm latest C source,# include "stdarg.h"# include "stdio.h"# include "stdlib.h"# include "math.h"# include "graphics.h"# include "conio.h"# define IN 4/* input layer neurons number* /# define HID 13/* hidden layer neuron number* /# define MOD 594/* Number of samples* /# define OUT 1/* output layer neurons number* /
Platform: |
Size: 3072 |
Author: 陈光华 |
Hits:
Description: 基于终端的订花系统_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>
#include<sys/ipc.h>
#include<unistd.h>
#include<sys/shm.h>
#include<sys/stat.h>
#define MYPORT 3490 // num of port
#define BACKLOG 5 // largest num of accept
#define MAXDATASIZE 1-based terminal Dinghua system _socket# include
Platform: |
Size: 4096 |
Author: xxf |
Hits:
Description: #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//读写等待状态
#define WAITOUT 5//中断等待状态
-# Include <string.h># Include <fstream.h># Include <stdio.h># Include <stdlib.h># Define FINISH 0// completion status# Define RUNNING 1// operation status# define READY 2// ready status# define WAITIO 3// io wait state# define WAITREAD 4// read and write wait state# define WAITOUT 5// interrupt wait state
Platform: |
Size: 2048 |
Author: 鹰隼 |
Hits:
Description: linux 下串口编程
#include <stdio.h> /*标准输入输出定义*/
#include <stdlib.h> /*标准函数库定义*/
#include <unistd.h> /*Unix标准函数定义*/
#include <sys/types.h> /**/
#include <sys/stat.h> /**/
#include <fcntl.h> /*文件控制定义*/
#include <termios.h> /*PPSIX终端控制定义*/
#include <errno.h> /*错误号定义*/
/***@brief 设置串口通信速率
*@param fd 类型 int 打开串口的文件句柄
*@param speed 类型 int 串口速度
*@return void*/
-linux serial port programming under# include
Platform: |
Size: 5120 |
Author: Edward |
Hits:
Description: 五子棋小游戏#include<stdlib.h>
#include<time.h>
#include<stdio.h>
#include<conio.h>
int chess[169]={0} /*棋盘*/
struct chess_t/*作为辅助,即是作为建意*/
{
char attack /*攻防用的,0表示守,1表示攻*/
int j /*作为优先级用*/
}chess_a[169] -Gobang game# Include
Platform: |
Size: 2048 |
Author: 庄斌 |
Hits:
Description: #define N 200
#include <graphics.h>
#include <stdlib.h>
#include <dos.h>
#define LEFT 0x4b00
#define RIGHT 0x4d00
#define DOWN 0x5000
#define UP 0x4800
#define ESC 0x011b
Platform: |
Size: 59392 |
Author: wuziyang |
Hits:
Description: #include <stdlib.h>
#include <string.h>
#include <stdio.h>
//#include <iostream>
#include "debugmalloc.h"
#include "dmhelper.h"
/*Define the macro */
#define ALIGN 8
#define FENCE 0xDEADBEEF
#define HEADERSIZE sizeof(struct header)
#define FOOTERSIZE sizeof(struct footer)-#include <stdlib.h>
#include <string.h>
#include <stdio.h>
//#include <iostream>
#include "debugmalloc.h"
#include "dmhelper.h"
/*Define the macro*/
#define ALIGN 8
#define FENCE 0xDEADBEEF
#define HEADERSIZE sizeof(struct header)
#define FOOTERSIZE sizeof(struct footer)
Platform: |
Size: 3072 |
Author: liucj |
Hits:
Description: 帧缓冲#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <unistd.h>
#include <fcntl.h>
#include <sys/ioctl.h>
#include <sys/mman.h>
#include <asm/page.h>
#include <linux/fb.h>
#define TRUE 1
#define FALSE 2
//a framebuffer device structure
typedef struct fbdev{
int fb
unsigned long fb_mem_offset
unsigned long fb_mem
struct fb_fix_screeninfo fb_fix -Frame buffer# Include <stdio.h># Include <stdlib.h># Include <string.h># Include <stdint.h># Include <unistd.h># Include <fcntl.h># include <sys/ioctl.h># include <sys/mman.h># include <asm/page.h># include <linux/fb.h># define TRUE 1# define FALSE 2// a framebuffer device structure typedef struct fbdev (int fb unsigned long fb_mem_offset unsigned long fb_mem struct fb_fix_screeninfo fb_fix
Platform: |
Size: 1024 |
Author: hjintian |
Hits:
Description: #include "windows.h"
#include "stdlib.h"
#include "string.h"
long WINAPI WndProc(HWND hWnd,UINT iMessage,UINT wParam,LONG lParam)
Platform: |
Size: 1024 |
Author: dan |
Hits:
Description: include <stdio.h> /*标准输入输出定义*/
#include <stdlib.h> /*标准函数库定义*/
#include <unistd.h> /*Unix标准函数定义*/
#include <sys/types.h> /**/
#include <sys/stat.h> /**/
#include <fcntl.h> /*文件控制定义*/
#include <termios.h> /*PPSIX终端控制定义*/
#include <errno.h> /*错误号定义*/
#define TRUE 1
#define FALSE 0
/***@brief 设置串口通信速率
*@-include <stdio.h>/* Standard input and output definitions* /# include <stdlib.h>/* Standard function library definition* /# include <unistd.h>/* Unix standard function definition* /# include <sys/types.h>/** /# Include <sys/stat.h>/** /# Include <fcntl.h>/* File control definition* /# include <termios.h>/* PPSIX terminal control definitions* /# include <errno.h>/* Error number definitions* /# define TRUE 1# define FALSE 0 /***brief set of serial communication rate* @
Platform: |
Size: 9216 |
Author: nameblue |
Hits:
Description: 分析的是实例
#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){ // 创建一个根
root = (tree_pointer)malloc(sizeof(BST))
root->key = data
root->left = NULL -Structure in the data analysis of the role of tree
Platform: |
Size: 72704 |
Author: 林明 |
Hits:
Description: Bluetooth xfu flash
#include <sys/stat.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <unistd.h>
#include <fcntl.h>
#include <err.h>
#include <string.h>
#include <assert.h>
#include <stdarg.h>
#include "dfu.h"
Platform: |
Size: 5120 |
Author: ulego |
Hits:
Description: c++词法分析很简单的代码#include<iostream.h>
#include<fstream.h>
#include<stdlib.h>
#include<stdio.h>
#include<string.h>
#include<conio.h>
#include<process.h> /*头文件*/
-c++ lexical analysis is very simple code# include <iostream.h># Include <fstream.h># Include <stdlib.h># Include <stdio.h># Include <string.h># Include <conio.h># Include <process.h> /* Header file* /
Platform: |
Size: 3072 |
Author: 李亚茹 |
Hits:
Description: visual studio 2005 stdlib.h 文件
如果你的文件不小心毁坏了。。可以用这个-visual studio 2005 stdlib.h file
Platform: |
Size: 7168 |
Author: t |
Hits:
Description: 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.
Platform: |
Size: 6144 |
Author: vounaiher |
Hits: