代码搜索:reverse
找到约 4,015 项符合「reverse」的源代码
代码结果 4,015
www.eeworm.com/read/445756/7591136
c terminalio.c
/*
** terminalio.c
**
** Written by Peter Sutton, October 2003
*/
#include
#include
void move_cursor(int x, int y) {
printf_P(PSTR("\x1b[%d;%dH"), y, x);
}
www.eeworm.com/read/240985/13181308
cpp key01_4.cpp
//{ Test01_4 }
#include"seqlists.h"
const int n=15;
SeqList L;
void reverse(SeqList& L)
{int i;
for (i=1;i
www.eeworm.com/read/240985/13181839
cpp emp4_04.cpp
// emp4_04 slisteg1
#include "linklist.h"
void reverse(link &l)
{
link pTmp,pTmp2=NULL;
while(l != NULL){
pTmp = l;
l = l->next;
pTmp->next = pTmp2;
pTmp2 = pTmp;
}
l =
www.eeworm.com/read/143803/5754323
pl gettext.pl
# Toying at an interface between Perl and GNU gettext .mo format.
# Copyright (C) 1995 Free Software Foundation, Inc.
# Fran.ANgois Pinard , 1995.
#
# Modified by NOKUBI Tak
www.eeworm.com/read/139332/5800806
hpp rend.hpp
// Boost.Range library
//
// Copyright Thorsten Ottosen 2003-2004. Use, modification and
// distribution is subject to the Boost Software License, Version
// 1.0. (See accompanying file LICENSE_1_0
www.eeworm.com/read/139332/5800807
hpp metafunctions.hpp
// Boost.Range library
//
// Copyright Thorsten Ottosen 2003-2004. Use, modification and
// distribution is subject to the Boost Software License, Version
// 1.0. (See accompanying file LICENSE_1_0
www.eeworm.com/read/139332/5800811
hpp rbegin.hpp
// Boost.Range library
//
// Copyright Thorsten Ottosen 2003-2004. Use, modification and
// distribution is subject to the Boost Software License, Version
// 1.0. (See accompanying file LICENSE_1_0
www.eeworm.com/read/139332/5802798
hpp matrix_expression.hpp
//
// Copyright (c) 2000-2002
// Joerg Walter, Mathias Koch
//
// Permission to use, copy, modify, distribute and sell this software
// and its documentation for any purpose is hereby granted with
www.eeworm.com/read/493180/6397937
h tsmbmusicaplibiterator.h
/* Copyright (C) 2006 Sony Ericsson Mobile Communications Japan, Inc. */
/*--------------------------------------------------------------------*/
// FileName:
// TSmbMusicAPLibIterator.h
//
// De
www.eeworm.com/read/348328/11601594
h int_fft.h
#ifndef __Int_FFT_h__
#define __Int_FFT_h__
//-----------------------------------------------------------------------------
// Global Variables
//----------------------------------------------