代码搜索:reverse
找到约 4,015 项符合「reverse」的源代码
代码结果 4,015
www.eeworm.com/read/224965/14559753
cpp exam2-7.cpp
#include "dlinklist.cpp"
void reverse(DLinkList *&L) /*双链表元素逆置*/
{
DLinkList *p=L->next,*q;
L->next=NULL;
while (p!=NULL)
{
q=p->next; /*q指向*p的后续结点*/
p->next=L->next; /*采用头插法将*p结
www.eeworm.com/read/124164/14592677
htm ch4_examp5.htm
var myShopping = new Array("Eggs","Milk","Potatoes","Cereal","Banana");
var ord = prompt("Enter 1 for alphabetical order, and -1 for reverse order",
www.eeworm.com/read/123847/14609963
makefile
CPP = bcc32
CPPFLAGS =
OFLAG = -e
.SUFFIXES : .obj .c
.c.obj :
$(CPP) $(CPPFLAGS) -c $<
all: \
echo1.exe \
indirect.exe \
lab7.exe \
reverse2.exe \
structarg.exe \
swap.exe
www.eeworm.com/read/223105/14658491
cpp chapter2-27.cpp
//文件名:CHAPTER2-27.cpp
#include
#include
#include
using namespace std;
int main()
{ //create constant string
const string hello("Hello, how are you?");
//i
www.eeworm.com/read/122684/14674302
cpp liststability.cpp
//: C20:ListStability.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Things don't move aro
www.eeworm.com/read/222743/14677559
cpp liststability.cpp
//: C07:ListStability.cpp {-bor}
// From "Thinking in C++, Volume 2", by Bruce Eckel & Chuck Allison.
// (c) 1995-2004 MindView, Inc. All Rights Reserved.
// See source code use permissions stated
www.eeworm.com/read/222279/14698632
c cdcorlt.c
/*
************************************************************************
History
************************************************************************
*/
/*
8 Jan 1997
Added test in ReadCorFi
www.eeworm.com/read/222279/14698822
c cdcor.c
/*
************************************************************************
History
************************************************************************
*/
/*
8 Jan 1997
Added test in ReadCorFi