代码搜索:reverse
找到约 4,015 项符合「reverse」的源代码
代码结果 4,015
www.eeworm.com/read/185116/9056620
dll reverse_1.dll
www.eeworm.com/read/185058/9059290
cpp onelink_reverse.cpp
#include "Onelink.h" //单链表类
void reverse(Onelink &h1) //将单链表逆转,引用类型参数
{
OnelinkNode *p=h1.head,*q,*front=NULL;
while(p!=NULL)
{
q=p->next;
www.eeworm.com/read/181668/9242068
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/377342/9279876
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/180734/9296436
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/179954/9329287
cpp reverse1.cpp
/* The following code example is taken from the book
* "The C++ Standard Library - A Tutorial and Reference"
* by Nicolai M. Josuttis, Addison-Wesley, 1999
*
* (C) Copyright Nicolai M. Josutti
www.eeworm.com/read/177968/9425677
c reverse_string.c
/********************************************************
* An example source module to accompany...
*
* "Using POSIX Threads: Programming with Pthreads"
* by Brad nichols, Dick Buttlar, Jacki
www.eeworm.com/read/373437/9455938
pdf reverse c++.pdf
www.eeworm.com/read/373100/9475214
cpp reverse2.cpp
#include
#include
#include
#define OVERFLOW -2
#define ERROR -1
#define OK 1
typedef struct LNode
{
int data;
struct LNode *next;
}LNode,*LinkList;
int
www.eeworm.com/read/166842/9995158