代码搜索:reverse
找到约 4,015 项符合「reverse」的源代码
代码结果 4,015
www.eeworm.com/read/453820/7410005
h dna.h
#include
#include
using namespace std;
void reverse(ifstream&);
void save(ofstream&);
www.eeworm.com/read/452050/7449348
java 3305742_ac_204ms_4100k.java
import java.util.*;
public class Main
{
public static String reverse(String str)
{
String ret = "";
for(int i = str.length()-1; i >= 0; i--)
{
ret += str.charAt(i);
}
retu
www.eeworm.com/read/449818/7496182
hpl bmw2100.hpl
; Orange programmer module v3.1
; (c) 2000 Alex Plusov
; BMW BAVARIA C BUSINESS RDS (zbm 92 - Pioneer) Calculator
; CHIP=P2100,8x8
; READ Not tested!!!
;PIN 1 2 3 4 5 6
www.eeworm.com/read/449530/7501359
c setbuf.c
/* reverse.c -- displays a file in reverse order */
#include
#include
int main(void)
{
printf("%d\n", BUFSIZ);
return 0;
}
www.eeworm.com/read/448932/7521701
cpp 4864148_tle.cpp
#include
#include
#include
using namespace std;
int compare(const void *p1,const void *p2)
{
string q1=*(string*)p1;
string q2=*(string*)p2;
return q1.compare(q
www.eeworm.com/read/445134/7598633
txt 汇编样本.txt
.386
.model flat,c
.stack 1024
.code
public Reverse
Reverse proc uses esi,arraychar:ptr
mov esi,arraychar
push 0
.repeat
mov al,[esi]
push ax
inc esi
.until byte ptr[esi]==0
mov s
www.eeworm.com/read/444676/7609244
asm michel.asm
TITLE MICHELANGELO, a STONED - derived Boot Virus
SUBTTL reverse engineered source code for MASM 5.1/6.0
PAGE 60,132
.RADIX 16
IF1
%Out 赏 V
www.eeworm.com/read/443686/7628547
cpp liststability.cpp
//: C04:ListStability.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 2000
// Copyright notice in Copyright.txt
// Things don't move around i
www.eeworm.com/read/436204/7775254
cpp 矩阵求逆.cpp
double a[MAX][MAX], I[MAX][MAX];
int n;
bool reverse_matrix(void)
{
int i, j, k, ik;
memset(I, 0, sizeof(I));
for(i = 1; i