代码搜索:reverse

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

代码结果 4,015
www.eeworm.com/read/428887/8831240

l reverse.l

# 19dec05abu # (c) Software Lab. Alexander Burger (setq *Port (port 6789)) (loop (setq *Sock (listen *Port)) (NIL (fork) (close *Port)) (close *Sock) ) (in *Sock (until (eof) (out
www.eeworm.com/read/285071/8871092

java reverse.java

import java.io.*; import java.net.*; public class Reverse { public static void main(String[] args) throws Exception { if (args.length != 1) { System.err.println("Usage: java Reverse string_
www.eeworm.com/read/187023/8882090

pak reverse.pak

www.eeworm.com/read/284429/8930722

m reverse.m

% name 曾莉莉 % id 07120482 % email 07120482@bjtu.edu.cn % supervisor 丁晓明 % reverse.m function [B]=reverse(A) % returns a matrix B consisting of the columns of A in reverse order. t=0;d1=0;d2
www.eeworm.com/read/184984/9061901

c reverse.c

www.eeworm.com/read/182804/9190630

gif reverse.gif

www.eeworm.com/read/378420/9231669

c reverse.c

www.eeworm.com/read/181830/9235738

m reverse.m

function Q = reverse(P) % REVERSE -- reverse matrix polynomial % % Q = reverse(P) % % Reverses the order of coefficients, and the sign of the % exponents. This is the same as replacing
www.eeworm.com/read/181668/9242056

reverse-iter

1 7 3 5 9
www.eeworm.com/read/377523/9272957

java reverse.java

//: c09:Reverse.java // From 'Thinking in Java, 2nd ed.' by Bruce Eckel // www.BruceEckel.com. See copyright notice in CopyRight.txt. // The Collecions.reverseOrder() Comparator. import com.brucee