代码搜索:reverse
找到约 4,015 项符合「reverse」的源代码
代码结果 4,015
www.eeworm.com/read/160611/5568774
alg convolve.alg
(CONVOLVE-ALG
(NAME "convolve")
(SUPPORT-FUNCTIONS "
void h_reverse(sample_type *h, long len)
{
sample_type temp;
int i;
for (i = 0; i < len; i++) {
temp = h[i];
h[i]
www.eeworm.com/read/160303/5573566
db.in-addr.arpa.
;
; BIND reverse data file for in-addr.arpa.
;
; $Id: db.in-addr.arpa.,v 1.4 2002/11/12 18:56:52 mcr Exp $
;
$TTL 604800
@ IN SOA in-addr.arpa. root.freeswan.org. (
200210241 ; Serial
604800 ;
www.eeworm.com/read/394312/8231873
h primer.h
#include
#include
#include
#include
using namespace std;
string reverse(string a)
{
int l =a.size();
string res ;
for(int i=l-1; i>=0; i--
www.eeworm.com/read/133137/14053810
h antprob.h
#ifndef ANT_LIB
#define ANT_LIB true
// antprob.h Include file for ant problem problem
// W.B.Langdon cs.bham.ac.uk 7 February 1997
// version "$Revision: 1.1 $"
//Modifications (in reverse order)
www.eeworm.com/read/189298/8477191
s printf.s
|
| Need to print the three values x, y, and z.
|
movl z,sp@- | Push args on the
movl y,sp@- | stack in reverse
movl x,sp@- | order: format, x,
movl #format,sp@- | y, and z.
jbsr _print
www.eeworm.com/read/427229/8960283
ini dvr_caption.ini
[IDS]
ALARM_RECORDING=Alarm-Recording!
NOTE=Wraning!
PASSWORD_ERR=Password err!
PLAY_PAUSE=Play/Pause
ZOOM=Zoom
SEARCH_FILE=Search File
STOP_PLAY=Stop
FRAME=Frame
FORWARD=Forward
REVERSE=Rev
www.eeworm.com/read/181232/9264519
h token.h
#ifndef __TOKEN_H__
#define __TOKEN_H__
#pragma once
//记号类别
enum {
TT_UNDEFINED, //未定义
TT_EOL, // '\n'
TT_REVERSE, // '\\'转义符
TT_PREPROCESSOR, //预编译 #
TT_CONNE
www.eeworm.com/read/163369/10163526
txt 吴尚杰 数据结构 原程序.txt
//小程序
//2_0
#include"linklist.h"
void Print(link l)
{
link p;
p=l;
while (p!=NULL)
{
visite_snode(p,1);
p=p->next;
}
}
void reverse(link &L)
{
link h,u;
www.eeworm.com/read/456155/7356498
cpp globe.cpp
#include "stdafx.h"
#include "Globe.h"
void simul_Reverse(RobotInford *A, RobotInford *B, int Number)
{
int i;
for(i=0;i
www.eeworm.com/read/448826/7525134
txt 073.txt
073
题目:反向输出一个链表。
程序源代码:
/*reverse output a list*/
#include "stdlib.h"
#include "stdio.h"
struct list
{ int data;
struct list *next;
};
typedef struct list node;
typedef node *link;