代码搜索:reverse

找到约 4,015 项符合「reverse」的源代码

代码结果 4,015
www.eeworm.com/read/180233/9314976

m cecompensation.m

%-------------- Fading compensation by CE symbol -------------- function [icompen,qcompen,h] = cecompensation (ch2,ch7,ce) %If you would like to simulate performance under CE-based compensation, ple
www.eeworm.com/read/179954/9329119

cpp reviter4.cpp

/* The following code example is taken from the book * "The C++ Standard Library - A Tutorial and Reference" * by Nicolai M. Josuttis, Addison-Wesley, 1999 * * (C) Copyright Nicolai M. Josutti
www.eeworm.com/read/375806/9349224

pl test.pl

use strict; $^W = 1; # warnings too my ($testnr, $maxnr, $oknr); BEGIN { $testnr = 1; $maxnr = 42; print "$testnr..$maxnr\n"; } sub ok ($) { if ($_[0]) { print "ok ", $testnr++, "\n"; $
www.eeworm.com/read/374989/9376830

c 4-33.c

#include void reverse(char *p) { if( *p =='\0' ) return; reverse( p+1 ); printf( "%c", *p ); } int main() { reverse("abc"); printf("\n"); return 0; }
www.eeworm.com/read/178378/9404428

cpp liststability.cpp

//: C20:ListStability.cpp // From Thinking in C++, 2nd Edition // at http://www.BruceEckel.com // (c) Bruce Eckel 1999 // Copyright notice in Copyright.txt // Things don't move around in lists #
www.eeworm.com/read/175308/9552667

ex-09-08

// Example 09-08: Using Array.Sort and Array.Reverse namespace Programming_CSharp { using System; public class Tester { public static void PrintMyArray(object[] theArra
www.eeworm.com/read/169910/9833133

c ibit_rev.c

/* Arrange input samples in bit-reverse addressing order the index j is the bit reverse of i */ #include "icomplex.h" /* integer complex.h header file */ void bit_rev(complex *X, unsigned
www.eeworm.com/read/169666/9847005

h testfft.h

#define PI 3.1415926 struct COMPLEX { float re,im; }; void add(COMPLEX *,COMPLEX *,COMPLEX *); void sub(COMPLEX *,COMPLEX *,COMPLEX *); void mul(COMPLEX *,COMPLEX *,COMPLEX *); int revers
www.eeworm.com/read/365390/9864873

asm basic_fn.asm

$nolist ;******************************************************************************* ;******************************************************************************* ;*
www.eeworm.com/read/169320/9866671

sql 数据库复制-备份&恢复法.sql

use master go if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[p_CopyDb]') and OBJECTPROPERTY(id, N'IsProcedure') = 1) drop procedure [dbo].[p_CopyDb] GO /*--将一个数据库完整复制成另