代码搜索:stdlib
找到约 10,000 项符合「stdlib」的源代码
代码结果 10,000
www.eeworm.com/read/444486/7612365
c rbt.c
// red-black tree
#include
#include
#include
#include
//////////////////////
// supplied by user //
//////////////////////
typedef int KeyType;
www.eeworm.com/read/444486/7612367
c shl.c
/* shell sort */
#include
#include
typedef int T; /* type of item to be sorted */
typedef int tblIndex; /* type of subscript */
#define compGT(a,b) (a > b)
www.eeworm.com/read/444486/7612377
c ins.c
/* insert sort */
#include
#include
typedef int T; /* type of item to be sorted */
typedef int tblIndex; /* type of subscript */
#define compGT(a,b) (a > b)
www.eeworm.com/read/444486/7612385
c bin.c
/* binary search tree */
#include
#include
#define compLT(a,b) (a < b)
#define compEQ(a,b) (a == b)
/* implementation dependent declarations */
typedef enum {
STA
www.eeworm.com/read/444091/7618041
c bsearch.c
/*
** Demonstrates searching an array of structures with bsearch
*/
#include
#include
typedef struct {
char key[ 10 ]; /* the sort key for the array */
int other_data;
www.eeworm.com/read/444091/7618044
c qsort.c
/*
** Demonstrates sorting an array of structures with qsort
*/
#include
#include
typedef struct {
char key[ 10 ]; /* the sort key for the array */
int other_data; /*
www.eeworm.com/read/442982/7640547
c mcmpfft.c
#include
#include
#include
#include "msp.h"
void mcmpfft(complex x[],int n,int isign)
{
/*---------------------------------------------------------------------
Ro
www.eeworm.com/read/442982/7640549
c msplfft.c
#include
#include
#include
#include "msp.h"
void msplfft(complex x[],int n,int isign)
{
/*----------------------------------------------------------------------
R
www.eeworm.com/read/438073/7737229
c mcmpfft.c
#include
#include
#include
#include "msp.h"
void mcmpfft(complex x[],int n,int isign)
{
/*---------------------------------------------------------------------
Ro
www.eeworm.com/read/438073/7737231
c msplfft.c
#include
#include
#include
#include "msp.h"
void msplfft(complex x[],int n,int isign)
{
/*----------------------------------------------------------------------
R