代码搜索:stdlib

找到约 10,000 项符合「stdlib」的源代码

代码结果 10,000
www.eeworm.com/read/197407/7997538

h smatrix2.h

// array representation of a sparse matrix // input operator has been modified to get // larger array if needed #ifndef SparseMatrix_ #define SparseMatrix_ #include #include
www.eeworm.com/read/396636/8097387

cpp server.cpp

// // SMPC Server example // SIC Dynamics Copyright(C) - 1999 // #include #include #include class TestServer : public DSmpcServer
www.eeworm.com/read/296483/8100556

cpp sktsrvr.cpp

// sktsrvr.cpp // listen to a socket, and then forward data between it and the tty #include // cout #include // printf #include // atoi #include
www.eeworm.com/read/296473/8101450

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/296473/8101470

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/296473/8101479

c bin.c

/* binary search tree */ #include #include #define compLT(a,b) (a < b) #define compEQ(a,b) (a == b) /* implementation dependend declarations */ typedef enum { STA
www.eeworm.com/read/196063/8117300

c rbt.c

// red-black tree #include #include #include #include ////////////////////// // supplied by user // ////////////////////// typedef int KeyType;
www.eeworm.com/read/196063/8117303

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/196063/8117322

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/196063/8117342

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