代码搜索:sequence

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

代码结果 10,000
www.eeworm.com/read/101082/6241533

c getuid_.c

/* char id_getuid[] = "@(#)getuid_.c 1.1"; * * get user id * * calling sequence: * integer getuid, uid * uid = getuid() * where: * uid will be the real user id */ long getuid_() { return((l
www.eeworm.com/read/101082/6241534

c sleep_.c

/* char id_sleep[] = "@(#)sleep_.c 1.1"; * * sleep for awhile * * calling sequence: * call sleep(seconds) * where: * seconds is an integer number of seconds to sleep (see sleep(3)) */ sleep_(
www.eeworm.com/read/101082/6243400

1f l5.1f

#print (Section 1.5) Write a program to replace each tab by the three-character sequence >, backspace, -, which prints as >-. The program should also replace each backspace by the sequence
www.eeworm.com/read/101082/6250837

c mem.c

#ifndef lint static char sccsid[] = "@(#)mem.c 4.2 (Berkeley) 4/25/83"; #endif not lint # include "stdio.h" # include "lrnref.h" # define SAME 0 struct keys { char *k_wd; int k_val; } keybuff[] =
www.eeworm.com/read/410189/6276731

cpp mea.cpp

/* Alfonso2 Peterssen 15 - 6 - 2008 IOI 205 "Mean Sequence" Very Easy!!! */ #include const int oo = 1
www.eeworm.com/read/442633/6289009

m despread.m

% Program 5-8 % despread.m % % Data despread function % % Programmed by M.Okita and H.Harada % function [iout, qout] = despread(idata, qdata, code1) % *************************************
www.eeworm.com/read/442633/6289012

m spread.m

% Program 5-7 % spread.m % % Data spread function % % Programmed by M.Okita and H.Harada % function [iout, qout] = spread(idata, qdata, code1) % *******************************************
www.eeworm.com/read/255407/6291015

c alg38.c

#include #include #include /* generates: original element sequence: 0 1 1 2 3 5 8 13 21 34 sequence after applying remove_if < 10: 13 21 34
www.eeworm.com/read/255407/6291021

c alg36.c

#include #include #include int main() { vector< int, allocator > vec; for ( int ix = 0; ix < 20; ix++ ) vec.push_back( ix ); random_shuffle(
www.eeworm.com/read/255407/6291051

c alg49.c

#include #include #include /* generates: original element sequence of first container: 0 1 2 3 4 5 6 7 8 9 original element sequence of second cont