码迷,mamicode.com
首页 >  
搜索关键字:big    ( 2809个结果
MYSQL类型与JAVA类型对应表
类型名称| 显示长度| 数据库类型| JAVA类型| JDBC类型索引(int) | | | | VARCHAR| L+N |VARCHAR| java.lang.String| 12 CHAR| N |CHAR| java.lang.String| 1 BLOB| L+N| BLOB| java. ...
分类:数据库   时间:2020-01-30 19:18:55    阅读次数:621
go语言 base58编码解码
package main import ( "bytes" "encoding/hex" "fmt" "math/big" ) var base58Alphabets = []byte("123456789ABCDEFGHJKLMNPQRSTUVWXYZabcdefghijkmnopqrstuvwx ...
分类:编程语言   时间:2020-01-30 09:59:21    阅读次数:116
数据结构与算法——哈希函数与哈希表等(1)
认识哈希函数和哈希表的实现 MD5 表达16^16范围的值 SHal 表达16^32范围的值 输入相同,即输出相同,不随机 不同的输出,输出相同 均匀性,离散性 设计RandomPool结构 设计一种结构,在该结构中有如下三个功能: insert (key):将某个key加入到该结构,做到不重复加入 ...
分类:编程语言   时间:2020-01-29 16:22:58    阅读次数:116
挑战程序设计竞赛2.3习题:Cow Exhibition POJ - 2184
"Fat and docile, big and dumb, they look so stupid, they aren't muchfun..."- Cows with Guns by Dana LyonsThe cows want to prove to the public that the ...
分类:其他好文   时间:2020-01-29 15:55:06    阅读次数:107
go语言 椭圆数字签名及其验证算法
package main import ( "crypto/ecdsa" "crypto/elliptic" "crypto/rand" "crypto/sha256" "encoding/hex" "fmt" "log" "math/big" ) func main() { // 1、对需要签名的 ...
分类:编程语言   时间:2020-01-29 12:51:06    阅读次数:114
poj3268
原题: Description One cow from each of N farms (1 ≤ N ≤ 1000) conveniently numbered 1..N is going to attend the big cow party to be held at farm #X (1 ≤ ...
分类:其他好文   时间:2020-01-26 19:04:18    阅读次数:74
Java-POJ1001-求高精度幂
参考博客:https://www.cnblogs.com/downrainsun/p/11041960.html 1 package poj.ProblemSet; 2 3 import java.math.BigDecimal; 4 import java.util.Scanner; 5 /* 6 ...
分类:编程语言   时间:2020-01-24 14:36:17    阅读次数:88
SDNU_ACM_ICPC_2020_Winter_Practice_1st
A Petya is a big fan of mathematics, esecially its part related to fractions. Recently he learned that a fraction is called proper iff its numerator i ...
分类:Windows程序   时间:2020-01-22 21:50:13    阅读次数:89
golang工具代码持续汇总
// int64 转字节数组 func IntToHex(num int64) []byte { buf := new(bytes.Buffer) err := binary.Write(buf, binary.BigEndian, num) if err != nil { log.Panic(er ...
分类:其他好文   时间:2020-01-22 18:35:11    阅读次数:82
题解 CF817C 【Really Big Numbers】
题目链接: "CF817C" 前置算法 : 二分 我们先考虑如何得到答案,若最小满足$x$减去其各数位之和后大于$s$ $ans = n x + 1$ 我们只要打个表就可以发现$:$ 若$x define ull unsigned long long using namespace std; ull ...
分类:其他好文   时间:2020-01-21 13:26:02    阅读次数:57
2809条   上一页 1 ... 25 26 27 28 29 ... 281 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!