代码搜索:reverse
找到约 4,015 项符合「reverse」的源代码
代码结果 4,015
www.eeworm.com/read/202486/15381689
cpp pr0602.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Problem 6.2 on page 143
// Loading a sequence in reverse order
#include
using namesp
www.eeworm.com/read/202486/15381697
cpp ex0602.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Example 6.2 on page 127
// Printing a sequence in reverse order
#include
using names
www.eeworm.com/read/202486/15381788
cpp exd02.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Example D.2 on page 356
// Using a reverse iterator on a vector object
#include
#inc
www.eeworm.com/read/202486/15381975
cpp pr0601.cpp
// Programming with C++, Second Edition, by John R. Hubbard
// Copyright McGraw-Hill, 2000
// Problem 6.1 on page 142
// Printing a sequence in reverse order
#include
using names
www.eeworm.com/read/202416/15384339
java reverseoperation.java
public class ReverseOperation extends Operation{
String order[];
String param;
String param1;
boolean control=false;
public ReverseOperation(){
}
public void getCommand(String s
www.eeworm.com/read/202224/15389236
m mmis2d.m
function [tf,xa,ya]=mmis2d(H)
%MMIS2D True for Axes that are 2D. (MM)
% MMIS2D(H) returns True if the axes having handle H displays
% a 2D viewpoint of the X-Y plane where the X- and Y-axes are
%
www.eeworm.com/read/112036/15495060
java rhymingwords.java
//这个类控制整个程序的流程
import java.io.*;
public class RhymingWords {
public static void main(String[] args) throws IOException {
//从一个文件中读取信息
FileReader words = new FileReader("words.txt");
www.eeworm.com/read/112035/15495062
java palindrome.java
public class Palindrome {
public static boolean isPalindrome(String stringToTest) {
String workingCopy = removeJunk(stringToTest);
String reversedCopy = reverse(workingCopy);
www.eeworm.com/read/111650/15507181
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/111569/15509914
c 18.c
#include "stdio.h"
#include "string.h"
void main(){
char source[200],reverse[200];
int slen,j,i;
printf("Input the string:");
gets(source);
slen=strlen(source);
for(j=0,i=slen-1