代码搜索:reverse
找到约 4,015 项符合「reverse」的源代码
代码结果 4,015
www.eeworm.com/read/335795/12499034
c ilist_test2.c
#include
#include "ilist.h"
int main()
{
/*
*
* ( 10 )( 9 8 7 6 5 4 3 2 1 0 )
*
* reverse the list
*
* ( 10 )( 0 1 2 3 4 5 6 7 8 9 )
www.eeworm.com/read/147363/12558752
iterator
// iterator standard header
#if _MSC_VER > 1000
#pragma once
#endif
#ifndef _ITERATOR_
#define _ITERATOR_
#include
#ifdef _MSC_VER
#pragma pack(push,8)
#endif /* _MSC_VE
www.eeworm.com/read/247673/12633380
c ilist_test2.c
#include
#include "ilist.h"
int main()
{
/*
*
* ( 10 )( 9 8 7 6 5 4 3 2 1 0 )
*
* reverse the list
*
* ( 10 )( 0 1 2 3 4 5 6 7 8 9 )
www.eeworm.com/read/135898/13889057
c ilist_test2.c
#include
#include "ilist.h"
int main()
{
/*
*
* ( 10 )( 9 8 7 6 5 4 3 2 1 0 )
*
* reverse the list
*
* ( 10 )( 0 1 2 3 4 5 6 7 8 9 )
www.eeworm.com/read/134666/13977778
cpp emod.cpp
#include "StdAfx.h"
#include ".\emod.h"
#include
EMod::EMod(void)
: m_strOutput(NULL)
{
}
EMod::~EMod(void)
{
}
void EMod::emod(char* a, char* e, char* n, char* result)
{
www.eeworm.com/read/236649/14006350
c ilist_test2.c
#include
#include "ilist.h"
int main()
{
/*
*
* ( 10 )( 9 8 7 6 5 4 3 2 1 0 )
*
* reverse the list
*
* ( 10 )( 0 1 2 3 4 5 6 7 8 9 )
www.eeworm.com/read/204559/15337115
c ilist_test2.c
#include
#include "ilist.h"
int main()
{
/*
*
* ( 10 )( 9 8 7 6 5 4 3 2 1 0 )
*
* reverse the list
*
* ( 10 )( 0 1 2 3 4 5 6 7 8 9 )
www.eeworm.com/read/200881/15420986
c list.c
typedef struct List {
struct List *next;
void *data;
} List;
int length(List *l)
{
int n;
n = 0;
while (l) {
l = l->next;
n++;
}
return n;
www.eeworm.com/read/113220/15466964
eq1 m60.eq1
ispEXPERT 7.1
Design m60 created Wed Jun 02 10:52:07 2004
Title: m60.bls
P-Terms Fan-in Fan-out Type Name (attributes)
--------- ------ ------- ---- -----------------
1/1
www.eeworm.com/read/103336/15736522
cpp purevirt.cpp
#include
#include
class Base {
public:
virtual void show_message(void) { cout