代码搜索:reverse

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

代码结果 4,015
www.eeworm.com/read/440250/7691574

c 89c52-stepmotor.c

/****************************************************************************** *Project:步进电机控制程序练习 A practise program of stepper motor controlment 运行开始后电机正转,默认转速为最高速度的50%(2000Hz),速度可微调,
www.eeworm.com/read/440250/7691577

lst 89c52-stepmotor.lst

C51 COMPILER V8.05a 89C52_STEPMOTOR 03/20/2009 01:55:07 PAGE 1 C51 COMPILER V8.05a, COMPILATION OF MODULE 89C52_STEPMOTOR OBJECT MODULE
www.eeworm.com/read/439580/7705639

java string7.java

public class String7{ public static void main(String[] args){ StringBuffer sb=new StringBuffer("ABCDEFG"); sb.replace(0, 3,"abc"); System.out.println(sb); sb.reverse(); Sys
www.eeworm.com/read/436521/7768627

c rev_str.c

/* ** Reverse the string contained in the argument. */ void reverse_string( char *str ) { char *last_char; /* ** Set last_char to point to the last character in the ** string. */
www.eeworm.com/read/399904/7826424

h stl_iterator.h

/* * * Copyright (c) 1994 * Hewlett-Packard Company * * Permission to use, copy, modify, distribute and sell this software * and its documentation for any purpose is hereby granted without fee,
www.eeworm.com/read/199431/7859723

cpp string.cpp

#include #include #include char *COPY(char *TARGET,char *SOURCE); char *REVERSE(char *STRING); int GETLEN(char *STRING); int main(void) { char STRING1[]="
www.eeworm.com/read/434521/7862351

h hanshu.h

#ifndef HANSHU_H #define HANSHU_H #include #include #include #include struct stu { char name[20]; long num; float score; struct stu *next; };
www.eeworm.com/read/199264/7873343

cpp string.cpp

#include #include #include char *COPY(char *TARGET,char *SOURCE); char *REVERSE(char *STRING); int GETLEN(char *STRING); int main(void) { char STRING1[]="
www.eeworm.com/read/298317/7967082

h my_list.h

#include //类的定义要写在.h文件中,函数只需要声明就可以,在.cpp文件中不能再有类的定义 class Item { public: friend class MY_List; private: Item(int d=0) {data=d; next=0;} Item *next; int data; };