代码搜索:reverse

找到约 4,015 项符合「reverse」的源代码

代码结果 4,015
www.eeworm.com/read/327775/13062097

m cecompensation.m

%-------------- Fading compensation by CE symbol -------------- function [icompen,qcompen,h] = cecompensation (ch2,ch7,ce) %If you would like to simulate performance under CE-based compensation, ple
www.eeworm.com/read/140545/13077135

cpp liststability.cpp

//: C07:ListStability.cpp // Things don't move around in lists //{-bor} #include "Noisy.h" #include #include #include #include using namespace std;
www.eeworm.com/read/327242/13091911

h aamap.h

/* aamap.gbl character and number translations */ /* $Name: fa35_03_06 $ - $Id: aamap.h,v 1.3 2007/06/29 20:50:53 wrp Exp $ */ char aacmap[64]={ 'K','N','K','N','T','T','T','T','R','S','R','S','I'
www.eeworm.com/read/326611/13130020

c 01.c

#include #define uint unsigned int #define uchar unsigned char #define NOP(); {_nop_(); _nop_(); _nop_(); _nop_();} /* 定义空操作指令 */ sbit shuma1_cs = P2^0; sbit shuma2_cs = P2^1;
www.eeworm.com/read/137017/13347921

txt readme.txt

DES(Data Encryption Standard)数据加密标准 说明: 本加密算法DES是本人通过从网上下载英文原材料和中文辅助资料,在翻译完原文后用C++实现了其算法。这里主要说明本文件夹所有文件的属性和本人在编程序时的一些心得。同时,这里还给出了C语言的源程序。 ◆◆◆ 英文原材料:------------DES算法/BBS水木清华站∶精华区readme.htm ...
www.eeworm.com/read/136959/13351821

c memrev.c

/* ** Public domain demo by Ray Gardner, 7 dec 88 ** ** Here's an old programming trick that (I bet) will be new to at least a ** few of you out there, even some "old hands". I don't remember wher
www.eeworm.com/read/321827/13397897

c strrev.c

/*** *strrev.c - reverse a string in place * * Copyright (c) 1985-1997, Microsoft Corporation. All rights reserved. * *Purpose: * defines _strrev() - reverse a string in place (not i
www.eeworm.com/read/319797/13442635

cpp f.cpp

#include //#include int reverse(int m) {int r=m%2; printf("%d",r); if((m/2)!=0) reverse(m/2); } void main() {int n; printf("input number:"); scanf("%d",&n); rever
www.eeworm.com/read/319472/13451384

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/319106/13460263

txt 新建 文本文档.txt

5.34⑤ 试编写递归算法,逆转广义表中的数据元素。 例如:将广义表 (a,((b,c),()),(((d),e),f)) 逆转为: ((f,(e,(d))),((),(c,b)),a)。 要求实现以下函数: void Reverse(GList &L); /* 递归逆转广义表L */ 广义表类型GList的定义: typedef enum {ATOM,L