代码搜索:Multiplicative
找到约 131 项符合「Multiplicative」的源代码
代码结果 131
www.eeworm.com/read/114372/15056307
hpp sarrayops2.hpp
/* The following code example is taken from the book
* "C++ Templates - The Complete Guide"
* by David Vandevoorde and Nicolai M. Josuttis, Addison-Wesley, 2002
*
* (C) Copyright David Vandevoorde
www.eeworm.com/read/206113/15300085
hpp sarrayops2.hpp
/* The following code example is taken from the book
* "C++ Templates - The Complete Guide"
* by David Vandevoorde and Nicolai M. Josuttis, Addison-Wesley, 2002
*
* (C) Copyright David Vandevoorde
www.eeworm.com/read/109973/15544395
hpp sarrayops2.hpp
/* The following code example is taken from the book
* "C++ Templates - The Complete Guide"
* by David Vandevoorde and Nicolai M. Josuttis, Addison-Wesley, 2002
*
* (C) Copyright David Vandevoorde
www.eeworm.com/read/150881/5688123
java randommcg.java
package org.jgap.util;
/**
Implementation of a randomX-compliant class using the
"Minimal Standard" multiplicative congruential generator of Park
and Miller. [Park, S.K. an
www.eeworm.com/read/200920/15420067
cpp shanks.cpp
#include
#include
#include
typedef __int64 INT;
//求逆
INT multiplicative_inverse(INT a,INT b){
INT a0=a,b0=b,t0=0,t=1,q=a0/b0,r=a0-q*b0;
while(r>0){
INT tem
www.eeworm.com/read/200922/15420063
cpp pohlig_hellman.cpp
#include
#include
#include
//typedef __int64 int;
//数字转换为二进制数
int num_to_bit(int x,int A[]){
int B[20];
int mul=2;
int j=0;
while(x!=0){
B[j]=x%mul;
x
www.eeworm.com/read/131315/5941599
h pic.tab.h
#define LABEL 257
#define VARIABLE 258
#define NUMBER 259
#define TEXT 260
#define COMMAND_LINE 261
#define DELIMITED 262
#define ORDINAL 263
#define TH 264
#define LEFT_ARROW_HEAD 265
#define RIGHT_A
www.eeworm.com/read/100127/6273941
test_grammar
test_grammar
1. Parser
1.1 Tokens
1.1.1 Backslashes
1.1.2 Numeric literals
1.1.2.1 Plain integers
1.1.2.2 Long integers
1.1.2.3 Floating point
1.1.3 String literals
1.2 Grammar
single_input
file_input
www.eeworm.com/read/177066/9470226
txt debug.txt
In yyparse() : type_specifier :kINT --- YACC
In yyparse() : declaration_specifiers :type_specifier --- YACC
In yyparse() : identifier :yNAME --- YACC
In yyparse() : ======= FOLLOW BY ====