代码搜索:reverse

找到约 4,015 项符合「reverse」的源代码

代码结果 4,015
www.eeworm.com/read/197963/7960075

c 51time.c

#include #include #define unit unsigned int #define uchar unsigned char /*定义字型字位口*/ #define DIGPORT XBYTE[0X8000] #define WORDPORT XBYTE[0x4000] /*定义P1口各管脚*/ sbit K0=P
www.eeworm.com/read/197407/7997650

cpp llist8.cpp

#include #include "hlist.h" template void Reverse(LinearList& L) {// In-place reversal of the list L. int l = L.Length(); T x; for (int i = 0; i < l - 1;
www.eeworm.com/read/197407/7998275

cpp copylist.cpp

#include #include "copylist.h" template void Reverse(LinearList L, LinearList& R) {// R is set to be the reverse of L. // If R doesn't have enough spac
www.eeworm.com/read/197407/7998325

cpp llist7.cpp

#include #include "llist7.h" void main(void) { int x, n = 15; LinearList L(20); for (int i = 0; i < n; i++) L.Insert(i,i); cout
www.eeworm.com/read/244728/12847287

cxx wzmap.cxx

#define wzDebug #include "wzmap.hxx" #include "wzoutput.hxx" #include wzMap::wzMap(wzIndex d, int dl) :Dim(d),DimLocal(dl
www.eeworm.com/read/244387/12869513

makefile

# Makefile for cbook/11-Arrays/programs # Created by the ExportAll facility # *************************************************************** PROGRAMS = \ gymjudge \ reverse \ testrev \
www.eeworm.com/read/244008/12899428

cpp f0305.cpp

//===================================== // f0305.cpp //===================================== #include #include using namespace std; //-------------------------------------
www.eeworm.com/read/243968/12903019

c sh205.c

#include #include #define unit unsigned int #define uchar unsigned char /*定义字型字位口*/ #define DIGPORT XBYTE [0x8000] #define WORDPORT XBYTE [0x4000] /*定义P1口各管脚*/ sbit
www.eeworm.com/read/330219/12906356

cpp 10_3.cpp

//10_3 #include struct Node{ char c; Node* next; }; Node* reverse(Node* head); void main() { Node x[4]; for(int i=0; i
www.eeworm.com/read/141335/13021048

java ass_2.java

public class ass_2 { public static void main(String [] args) { Integer x [] = {new Integer(1), new Integer(2), new Integer(3), new Integer(4), new Integer(5),