码迷,mamicode.com
首页 >  
搜索关键字:practice    ( 1575个结果
面试题25:合并两个排序的链表
NowCoder ...
分类:编程语言   时间:2018-12-30 02:50:34    阅读次数:213
Bailian2797 最短前缀【字典树】
"2797:最短前缀" 总时间限制: 1000ms 内存限制: 65536kB 描述 一个字符串的前缀是从该字符串的第一个字符起始的一个子串。例如 "carbon"的字串是: "c", "ca", "car", "carb", "carbo", 和 "carbon"。注意到这里我们不认为空串是字串, ...
分类:其他好文   时间:2018-12-29 18:29:02    阅读次数:260
Bailian4134 查找最接近的元素【二分查找】
"4134:查找最接近的元素" 总时间限制: 1000ms 内存限制: 65536kB 描述 在一个非降序列中,查找与给定值最接近的元素。 输入 第一行包含一个整数n,为非降序列长度。1 include define N 100000 int a[N]; int main(void) { int n ...
分类:其他好文   时间:2018-12-26 10:30:34    阅读次数:387
Bailian4117 简单的整数划分问题【记忆化递归】
"4117:简单的整数划分问题" 总时间限制: 100ms 内存限制: 65536kB 描述 将正整数n 表示成一系列正整数之和,n=n1+n2+…+nk, 其中n1 =n2 =… =nk =1 ,k =1 。 正整数n 的这种表示称为正整数n 的划分。正整数n 的不同的划分个数称为正整数n 的划分 ...
分类:其他好文   时间:2018-12-24 02:43:30    阅读次数:121
多语自然语言处理:从原理到实践
百度网盘 出版社: 机械工业出版社; 第1版 (2015年2月1日) 外文书名: Multilingual Natural Language Processing Applications from Theory to Practice 丛书名: 计算机科学丛书 平装: 448页 语种: 简体中文 ...
分类:编程语言   时间:2018-12-23 15:30:14    阅读次数:252
文摘:Slopegraphs for comparing gradients: Slopegraph theory and practice
原文地址:https://www.edwardtufte.com/bboard/q-and-a-fetch-msg?msg_id=0003nk Slopegraphs for comparing gradients: Slopegraph theory and practice Slopegraph ...
分类:其他好文   时间:2018-12-23 11:25:57    阅读次数:163
openjudge1308——Is It A Tree?
题目链接:http://bailian.openjudge.cn/practice/1308?lang=en_US 题目大意:给你一个集合,判断它是不是一颗树(无环,点的个数=边的个数+1,空树)并查集判断即可 解释都在代码里 读者可以试试,把这份代码提交,等待你的不是AC而是WA 为什么呢? 一路 ...
分类:其他好文   时间:2018-12-20 21:06:11    阅读次数:186
Tensorflow Practice 2-3
1 import tensorflow as tf 2 3 ''' 4 Fetch: 5 6 ''' 7 input1 = tf.constant(3.0) 8 input2 = tf.constant(2.0) 9 input3 = tf.constant(5.0) 10 11 add = tf.... ...
分类:其他好文   时间:2018-12-18 02:34:11    阅读次数:248
Tensorflow Practice 3-2
Tensorflow practice lesson 3-2 ...
分类:其他好文   时间:2018-12-18 02:28:52    阅读次数:164
Tensorflow Practice 2-1
1 import tensorflow as tf 2 import os 3 os.environ['TF_CPP_MIN_LOG_LEVEL'] = '2' 4 5 '''创建一个常量op''' 6 m1 = tf.constant([[3, 3]]) 7 '''创建一个常量op''' 8 m2... ...
分类:其他好文   时间:2018-12-18 02:28:43    阅读次数:169
1575条   上一页 1 ... 29 30 31 32 33 ... 158 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!