代码搜索:reverse
找到约 4,015 项符合「reverse」的源代码
代码结果 4,015
www.eeworm.com/read/131315/5935443
awk reverse.awk
#this program creates palindromic output - slightly modified from Gawk Manual
{
rev($0, length)
}
function rev(str, len) {
if (len == 0) {
print " ", $0
return
}
printf "%c", substr(str, len,
www.eeworm.com/read/131315/5944955
c reverse.c
/*-
* Copyright (c) 1991, 1993
* The Regents of the University of California. All rights reserved.
*
* This code is derived from software contributed to Berkeley by
* Edward Sze-Tyan Wang.
*
*
www.eeworm.com/read/131180/5947567
java reverse.java
/*
* Copyright (c) 2000 David Flanagan. All rights reserved.
* This code is from the book Java Examples in a Nutshell, 2nd Edition.
* It is provided AS-IS, WITHOUT ANY WARRANTY either expressed or
www.eeworm.com/read/126430/6016744
c reverse.c
void reverse(iorder,ncity,n)
int iorder[],n[],ncity;
{
int nn,j,k,l,itmp;
nn=(1+((n[2]-n[1]+ncity) % ncity))/2;
for (j=1;j
www.eeworm.com/read/126430/6017356
c reverse.c
void reverse(int iorder[], int ncity, int n[])
{
int nn,j,k,l,itmp;
nn=(1+((n[2]-n[1]+ncity) % ncity))/2;
for (j=1;j
www.eeworm.com/read/123117/6062893
java reverse.java
import java.io.*;
import java.net.*;
public class Reverse {
public static void main(String[] args) throws Exception {
if (args.length != 1) {
System.err.println("Usage: java Reverse "
www.eeworm.com/read/123117/6062898
java reverse.java
import java.io.*;
import java.net.*;
public class Reverse {
public static void main(String[] args) throws Exception {
if (args.length != 1) {
System.err.println("Usage: java Reverse strin
www.eeworm.com/read/117971/6100192
java reverse.java
/*
* Copyright (c) 2000 David Flanagan. All rights reserved.
* This code is from the book Java Examples in a Nutshell, 2nd Edition.
* It is provided AS-IS, WITHOUT ANY WARRANTY either expressed or
www.eeworm.com/read/117815/6100463
java reverse.java
/*
* Copyright (c) 2000 David Flanagan. All rights reserved.
* This code is from the book Java Examples in a Nutshell, 2nd Edition.
* It is provided AS-IS, WITHOUT ANY WARRANTY either expressed or
www.eeworm.com/read/117487/6103073
java reverse.java
/*
* Copyright (c) 2000 David Flanagan. All rights reserved.
* This code is from the book Java Examples in a Nutshell, 2nd Edition.
* It is provided AS-IS, WITHOUT ANY WARRANTY either expressed or