代码搜索:reverse
找到约 4,015 项符合「reverse」的源代码
代码结果 4,015
www.eeworm.com/read/325327/13212133
txt 所有运算.txt
#include
#include
#include
#define MAX 1000
void reverse(char *p)
{//逆序存放
int i=(int)strlen(p),j;
char temp;
for(j=0;j
www.eeworm.com/read/314608/13563794
asm 415.asm
DATA SEGMENT
MBUF DB 0,1,2,3,4
NBUF DB 5 DUP(0)
MESG1 DB 'The right order is :','$'
MESG2 DB 'The reverse order is :','$'
DATA ENDS
CODE SEGMENT
ASSUME CS:CODE,DS:DATA
STDOUT1 PROC N
www.eeworm.com/read/310043/13659303
htm 5-13.htm
colors = new Array('330099','00ff00','ff00ff');
sCol = 'ff00ff';
mCol = '00ff00';
hCol = 'red';
H = '***';
H = H.split('');
H = H.reverse();
M = '*****';
M = M.
www.eeworm.com/read/494279/6381136
htm 5-13.htm
colors = new Array('330099','00ff00','ff00ff');
sCol = 'ff00ff';
mCol = '00ff00';
hCol = 'red';
H = '***';
H = H.split('');
H = H.reverse();
M = '*****';
M = M.
www.eeworm.com/read/156810/11762634
m alpha.m
function ret=alpha(rebxn,pw,cw,m)
%rebxn=reverse permittivity in half cell
%pw=pixel width
%cw=cell width
%m=order index of Fourier coefficient
t=size(rebxn);
M=max(t);
t0=pi*m*pw/cw;
if t0==0
www.eeworm.com/read/342926/11991128
cpp 1007.cpp
#include
#include
#define MAX_SIZE 101
#define MAX_NUM 2500
int reverse(char *str,int length)
{
int left_A=0;
int left_C=0;
int left_G=0;
int left_
www.eeworm.com/read/337834/12338348
c merkle_hash.c
#include "merkle_hash.h"
static inline void
reverse (u_char *buf, u_int size)
{
assert (size == sha1::hashsize);
for (u_int i = 0; i < (size / 2); i++) {
char tmp = buf[i];
buf[i] = buf[
www.eeworm.com/read/130490/14190003
h dictionary.h
#ifndef DICTIONARY_H
#define DICTIONARY_H
#include
#include
typedef struct dict_ dict;
dict *
dict_new (void);
int
dict_set_reverse (dict *dt);
void
dict_free (dict *dt);
dict