代码搜索:reverse
找到约 4,015 项符合「reverse」的源代码
代码结果 4,015
www.eeworm.com/read/353878/10409111
m filtfilt.m
function y = filtfilt(b,a,x)
%FILTFILT Zero-phase forward and reverse digital filtering.
% Y = FILTFILT(B, A, X) filters the data in vector X with the filter described
% by vectors A and B to crea
www.eeworm.com/read/159920/10589723
c strrev.c
/*
** STRREV.C - reverse a string in place
**
** public domain by Bob Stout
*/
#include
char *strrev(char *str)
{
char *p1, *p2;
if (! str || ! *str)
www.eeworm.com/read/454130/7397664
cpp text2_1.cpp
#include
#include
using namespace std;
int main( )
/* Pre: The user supplies an integer n and n decimal numbers.
Post: The numbers are printed in reverse order.
Uses: The
www.eeworm.com/read/197407/7997652
h dblcirc7.h
// doubly-linked circular linked list with head node
// extended to include Reverse
#ifndef HDoubleCircular_
#define HDoubleCircular_
#include
#include "dnode.h"
#include "x
www.eeworm.com/read/243473/12939159
c floyd.c
#define MAXSIZE 20
#define INT_MAX 5000
void floyd(int [][MAXSIZE], int [][MAXSIZE], int);
void display_path(int [][MAXSIZE], int [][MAXSIZE], int);
void reverse(i
www.eeworm.com/read/136959/13351118
c strrev.c
/*
** STRREV.C - reverse a string in place
**
** public domain by Bob Stout
*/
#include
#include "snip_str.h"
#if defined(__cplusplus) && __cplusplus
extern "C" {
#endif
char *strrev(
www.eeworm.com/read/136879/13356035
cpp fig20_33.cpp
// Fig. 20.33: fig20_33.cpp
// Demonstrates miscellaneous functions: copy_backward, merge,
// unique and reverse.
#include
#include
#include
using namespace std
www.eeworm.com/read/310212/13654729
m filtfilt.m
function y = filtfilt(b,a,x)
%FILTFILT Zero-phase forward and reverse digital filtering.
% Y = FILTFILT(B, A, X) filters the data in vector X with the filter described
% by vectors A and B to c
www.eeworm.com/read/147331/5732542
c strrchr.c
/*
FUNCTION
---reverse search for character in string
INDEX
strrchr
ANSI_SYNOPSIS
#include
char * strrchr(const char *, int );
TRAD_SYNOPSIS
#include