代码搜索:reverse
找到约 4,015 项符合「reverse」的源代码
代码结果 4,015
www.eeworm.com/read/432630/8586267
pro chapter09reverseimage.pro
; Chapter09ReverseImage.pro
PRO Chapter09ReverseImage
image = READ_DICOM (FILEPATH('mr_knee.dcm', $
SUBDIRECTORY = ['examples', 'data']))
imgSize = SIZE (image, /DIMENSIONS)
DEVICE, DEC
www.eeworm.com/read/432289/8612982
cpp liststability.cpp
//: C20:ListStability.cpp
// From Thinking in C++, 2nd Edition
// at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Things don't move around in lists
#
www.eeworm.com/read/237367/8626698
c ibit_rev.c
/* Arrange input samples in bit-reverse addressing order
the index j is the bit reverse of i */
#include "icomplex.h" /* integer complex.h header file */
void bit_rev(complex *X, unsigned
www.eeworm.com/read/288383/8636641
c image.c
/////////////////////////////////////////////////
// Example For ICETEK-VC5416-EDU //
// CTR Version : V4 //
// Filename: Image.c
www.eeworm.com/read/288383/8636927
c main.c
#define IMAGEWIDTH 120
#define IMAGEHEIGHT 96
unsigned char y1[IMAGEWIDTH*IMAGEHEIGHT];
ioport unsigned int port0;
int main()
{
port0=1;
www.eeworm.com/read/431296/8690680
c 4.10.c
4.10③ 编写对串求逆的递推算法。
要求实现以下函数:
void Reverse(StringType &s);
/* Reverse s by iteration. */
StringType是串的一个抽象数据类型,它包含以下6种基本操作:
void InitStr(StringType &s);
// 初始化s为空串。
void StrAssign(StringT
www.eeworm.com/read/431296/8690784
c 5.34.c
5.34⑤ 试编写递归算法,逆转广义表中的数据元素。
例如:将广义表
(a,((b,c),()),(((d),e),f))
逆转为:
((f,(e,(d))),((),(c,b)),a)。
要求实现以下函数:
void Reverse(GList &L);
/* 递归逆转广义表L */
广义表类型GList的定义:
typedef enum {ATOM,L
www.eeworm.com/read/286691/8748603
lst clibarc.lst
CLIB.H
ABS.C
ATOI.C
ATOIB.C
AUXBUF.C
AVAIL.C
BSEEK.C
BTELL.C
CALL.ASM
CALLOC.C
CLEARERR.C
CSEEK.C
CSYSLIB.C
CTELL.C
DTOI.C
EXIT.C
FCLOSE.C
FEOF.C
FERROR.C
FGETC.C
FGETS.C
FOPEN.C
www.eeworm.com/read/385935/8776299
java str35.java
///构造一个缓冲字符串类对象
///将字符串倒置后输出
public class str35
{
public static void main(String[] args)
{
StringBuffer sb=new StringBuffer("我是一个程序员");
System.out.println(sb.reverse());
www.eeworm.com/read/429569/8802528
bak palindrome.java.bak
public class Palindrome {
public static boolean isPalindrome(String stringToTest) {
String workingCopy = removeJunk(stringToTest);
String reversedCopy = reverse(workingCopy);