代码搜索:reverse
找到约 4,015 项符合「reverse」的源代码
代码结果 4,015
www.eeworm.com/read/244342/12871799
c reverse_list.c
//链表逆序,一个是采取依次摘取节点的方式,另一个是递归方式
#include
#include
typedef struct __node_t
{
int value;
struct __node_t *next;
}node_t, *pnode_t;
//typedef struct __node_t node_t;
int show (nod
www.eeworm.com/read/242370/13009156
cpp reverse-iter.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/138860/13207224
m reverse2.m
function r = reverse2(x)
% REVERSE2 Reverse order of elements in 2-d signal
if ndims(x)~=2, error('X must be a 2-D matrix.'); end
r = x(end:-1:1, end:-1:1);
www.eeworm.com/read/320159/13432024
cpp reverse-iter.cpp
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/317944/13492992
h reverse_iterator.h
/*******************************************************************************
Tree Container Library: Generic container library to store data in tree-like structures.
Copyright (c) 2006 Mitchel
www.eeworm.com/read/314474/13566666
gawk reverse-text.gawk
#!/usr/local/bin/gawk -f
#
# reverse-text --
# Reverse the word order in a text file
#
# $Header: /home/srilm/devel/utils/src/RCS/reverse-text.gawk,v 1.1 2003/01/01 18:35:23 stolcke Exp $
#
BEGIN {
s
www.eeworm.com/read/314474/13566682
gawk reverse-lm.gawk
#!/usr/local/bin/gawk -f
#
# reverse-lm --
# reverse N-grams in a backoff LM
#
# usage: reverse-lm lm-file > rev-lm-file
#
# $Header: /home/srilm/devel/utils/src/RCS/reverse-lm.gawk,v 1.2 2004/11/02 0
www.eeworm.com/read/314220/13571344
html reverse_copy.html
MFC Programmer's SourceBook : STL Programmer's Gui
www.eeworm.com/read/311447/13630951
m reverse2.m
function r = reverse2(x)
% REVERSE2 Reverse order of elements in 2-d signal相反的顺序分子在二维信号
if ndims(x)~=2, error('X must be a 2-D matrix.'); end
r = x(end:-1:1, end:-1:1);
www.eeworm.com/read/309443/13671291
html reverse_copy.html
MFC Programmer's SourceBook : STL Programmer's Gui