代码搜索:reverse
找到约 4,015 项符合「reverse」的源代码
代码结果 4,015
www.eeworm.com/read/192334/8385903
h mjpaizu.h
#ifndef mjpaizuH
#define mjpaizuH
#include "mjpai.h"
#include
//2003.2-4 九江麻将 ---张浩
//
//用stl vector 实现的 麻将组,应用于整个程序
//
//
//
#include
using namespace std;
//以上是自
www.eeworm.com/read/189298/8477308
c rev_str.c
/*
** Reverse the string contained in the argument.
*/
void
reverse_string( char *str )
{
char *last_char;
/*
** Set last_char to point to the last character in the
** string.
*/
www.eeworm.com/read/389621/8510605
asm 字符串逆序输出.asm
;si执行源操作数地址,di指向目的操作数地址
data segment
Msg1 db "Please input a string:$"
Msg2 db 0ah,0dh,"It's reverse string is:$"
String1 db 100,?,100 dup(?)
String2 db 100,?,100 dup(?)
Msg db 0ah,0dh,'$'
www.eeworm.com/read/432289/8612834
cpp priorityqueue2.cpp
//: C20:PriorityQueue2.cpp
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Changing the priority
#include
www.eeworm.com/read/187617/8616353
10838
Path: cantaloupe.srv.cs.cmu.edu!das-news.harvard.edu!noc.near.net!howland.reston.ans.net!agate!dog.ee.lbl.gov!network.ucsd.edu!news.cerf.net!crash!filebank!george.marengo
From: george.marengo@filebank
www.eeworm.com/read/237367/8626763
c fbit_rev.c
/*
fbit_rev.c
Arrange input samples in bit-reverse addressing order
- the index j is the bit reverse of i
*/
#include "fcomplex.h" /* floating-point complex.h header file */
www.eeworm.com/read/288383/8636611
log cc_build_debug.log
---------------------------- Reverse.pjt - Debug ----------------------------
[Image.c] "c:\ti\c5400\cgtools\bin\cl500" -g -q -fr"c:/icetek-vc5416-edulab/lab0804-Reverse/Debug" -d"_DEBUG" -@"Debug.
www.eeworm.com/read/288383/8636910
log cc_build_debug.log
---------------------------- Reverse.pjt - Debug ----------------------------
[main.c] "c:\ti\c5400\cgtools\bin\cl500" -g -q -fr"C:/ICETEK-VC5416-EDULab/Lab0905-Reverse/Debug" -d"_DEBUG" -@"Debug.l
www.eeworm.com/read/287520/8684248
c bitrev.c
/* bitrev.c - bit reverse of a B-bit integer n */
#define two(x) (1
www.eeworm.com/read/285107/8868396
java string7.java
public class String7{
public static void main(String[] args){
StringBuffer sb=new StringBuffer("ABCDEFG");
sb.replace(0, 3,"abc");
System.out.println(sb);
sb.reverse();
Sys