代码搜索:reverse
找到约 4,015 项符合「reverse」的源代码
代码结果 4,015
www.eeworm.com/read/160303/5573582
arpa db.7.95.127.in-addr.arpa
; example.com reverse zone for FreeS/WAN testing
; This file belongs in /var/named/test.rev.zone
; RCSID $Id: db.7.95.127.in-addr.arpa,v 1.2 2003/06/01 17:17:43 mcr Exp $
; add to /etc/named.conf:
;
www.eeworm.com/read/160303/5574204
zone test.rev.zone
; example.com reverse zone for FreeS/WAN testing
; This file belongs in /var/named/test.rev.zone
; RCSID $Id: test.rev.zone,v 1.4 2003/05/29 02:39:02 mcr Exp $
; add to /etc/named.conf:
;;;// revers
www.eeworm.com/read/248620/12550182
c libc.c
#include
int strlen(char *buf)
{
int i=0;
while(*buf++)
i++;
return i;
}
char *reverse(char *buf)
{
char k;
int i;
int len=strlen(buf)-1;
for(i=len;i>(len/2);i--)
{
www.eeworm.com/read/133137/14053822
h queue.h
#ifndef QUEUE_LIB
#define QUEUE_LIB true
// queue.h Include file for queue2
// W.B.Langdon cs.bham.ac.uk 31 March 1997
// version "$Revision: 1.1 $"
//Modifications (in reverse order)
//WBL 31 Mar
www.eeworm.com/read/133137/14053850
h test.h
// test.h Include file for test.cc etc
// W. Langdon cs.ucl.ac.uk 30 Jan 1995
// version "$Revision: 1.32 $"
//Modifications (in reverse order)
//WBL 18 Oct 1995 Support rand_test
//WBL 17 Oct 1
www.eeworm.com/read/133137/14053880
h stack.h
#ifndef STACK_LIB
#define STACK_LIB true
// calc.h Include file for calc.cc etc
// W. Langdon cs.ucl.ac.uk 26 Nov 1995
// version "$Revision: 1.3 $"
//Modifications (in reverse order)
// WBL 28 Ma
www.eeworm.com/read/110478/15533010
cpp 基数转换程序.cpp
#include
#include
#include
string Convert(const int& num,const int& newbase);
string Reverse(const string& str);
string Convert(const int& num,const int& newb
www.eeworm.com/read/280846/10288467
pro drawpic.pro
pro drawpic
loadct,0
window,0,xsize=420,ysize=200
tem=indgen(200)+20
tem=reverse(tem)
colorbar=intarr(420,200)
for i=0,419 do begin
colorbar[i,*]=tem
endfor
for fn=1,50 do begin
fname=
www.eeworm.com/read/338626/12291341
c link.c
#include
#include
#include "link.h"
int reverse(Link* link)
{
LinkNode * p = NULL;
LinkNode * n = NULL;
while (link->first->next){
n = link->first->next;
link->first->nex