码迷,mamicode.com
首页 > 2018年02月17日 > 全部分享
mysql复习
1.数据库操作 2.表操作 3.数据操作 插入 更新 删除 4.综合练习 更多:http://www.cnblogs.com/wupeiqi/articles/5748496.html ...
分类:数据库   时间:2018-02-17 20:47:51    阅读次数:254
关于我对VXLAN的一点理解
vxlan技术的一些的总结
分类:其他好文   时间:2018-02-17 20:47:25    阅读次数:814
吴恩达深度学习笔记(deeplearning.ai)之循环神经网络(RNN)(二)
导读 本节内容介绍如何使用RNN训练语言模型,并生成新的文本序列。 语言模型(Language model) 通过语言模型,我们可以计算某个特定句子出现的概率是多少,或者说该句子属于真实句子的概率是多少。正式点讲,一个序列模型模拟了任意特定单词序列的概率。 Language modelling wi ...
分类:其他好文   时间:2018-02-17 20:47:19    阅读次数:364
python3 tpc通讯程序
上面是一个简单的tcp服务器源码 导入socket模块后,创建一个套接字 绑定ip和端口(ip地址可以通过命令行,输入‘ipconfig’命令查看,端口65535以内没有被占用就行了) listen()是允许同时连接的客户端数量 最后循环监听客户端发送的消息 因为python默认编码是ASCII,所 ...
分类:编程语言   时间:2018-02-17 20:30:58    阅读次数:202
pycharm2017.3.3永久激活(转载)
pycharm是很强大的开发工具,但是每次注册着实让人头疼。网络上很多注册码、注册服务器等等、但都只是一年或者不能用;为次有如下解决方案。亲测有效!!! 如果想让pycharm永久被激活,比如截止日到2099-12-31;这应该算是永久激活了吧; step1: 下载jar包: 此jar包的目的就是让 ...
分类:其他好文   时间:2018-02-17 20:30:50    阅读次数:318
【easy-】437. Path Sum III 二叉树任意起始区间和
You are given a binary tree in which each node contains an integer value. Find the number of paths that sum to a given value. The path does not need t ...
分类:其他好文   时间:2018-02-17 20:30:41    阅读次数:209
(四)storm笔记
mkdir /var/storm conf/storm.yaml storm.zookeeper.servers: - "111.222.333.444" - "555.666.777.888" storm.local.dir: "/mnt/storm" nimbus.seeds: ["111.22 ...
分类:其他好文   时间:2018-02-17 20:30:31    阅读次数:204
OOP 1.4 内联函数和重载函数函数参数缺省值
1、内联函数 存在的背景:函数调用存在开销(调用时候参数压栈,返回地址压栈;返回时从栈取出返回地址,跳转到返回地址。总共需要几条指令的开销)。如果函数指令较少,调用多次,函数调用的开销占比大。 内联函数的处理:编译器处理对内联函数的调用语句时,将整个函数代码插入到调用语句处,不会产生函数的语句。 使 ...
分类:其他好文   时间:2018-02-17 20:30:24    阅读次数:176
Lintcode206 Interval Sum solution 题解
【题目描述】 Given an integer array (index from 0 to n-1, where n is the size of this array), and an query list. Each query has two integers[start, end]. Fo ...
分类:其他好文   时间:2018-02-17 20:30:15    阅读次数:241
【easy】437. Path Sum III 二叉树任意起始区间和
You are given a binary tree in which each node contains an integer value. Find the number of paths that sum to a given value. The path does not need t ...
分类:其他好文   时间:2018-02-17 20:30:08    阅读次数:216
Lintcode203 Segment Tree Modify solution 题解
【题目描述】 For a Maximum Segment Tree, which each node has an extra value max to store the maximum value in this node's interval. Implement a modify funct ...
分类:其他好文   时间:2018-02-17 20:30:00    阅读次数:179
php学习笔记-php中的数据转换
看下图中的这个例子。 输出结果是30,为什么呢?你说是因为PHP先把str这个变量由STRING类型转化为INTEGER类型再和后面的INTEGER相加最后得30,很有道理。 那么为什么不是把int这个变量由INTEGER类型转化为STRING类型呢,最后和前面的str相连结果是1020呢? 关键点 ...
分类:Web程序   时间:2018-02-17 20:29:54    阅读次数:241
Lintcode205 Interval Minimum Number solution 题解
【题目描述】 Given an integer array (index from 0 to n-1, where n is the size of this array), and an query list. Each query has two integers[start, end]. Fo ...
分类:其他好文   时间:2018-02-17 20:29:46    阅读次数:208
进程管理
进程管理
分类:系统相关   时间:2018-02-17 20:13:00    阅读次数:258
centos7_bind_DNS 配置master、slave、缓存、转发
DNS系统的作用 正向解析:域名到IP的解析过程 反向解析:IP到域名的解析过程,反向解析的作用为服务器身份验证 DNS系统的工作模式: 递归查询:DNS 服务器可使用其自身的资源记录信息缓存来应答查询,也可代表请求客户机来查询或联系其他 DNS 服务器,并随后将应答返回至客户机 迭代查询:如果没有 ...
分类:其他好文   时间:2018-02-17 20:12:52    阅读次数:2784
python之路(三)-set
set内定义的一些函数 add:添加一个对象 函数原型:def add(self, *args, **kwargs) 用法: set1.add(value) clear:添加一个对象 函数原型:def clear(self, *args, **kwargs) 用法: set1.clear() dif ...
分类:编程语言   时间:2018-02-17 20:12:42    阅读次数:263
BZOJ3527:[Zjoi2014]力——题解
http://www.lydsy.com/JudgeOnline/problem.php?id=3527 给出n个数qi,给出Fj的定义如下: 令Ei=Fi/qi,求Ei. 参考:https://www.cnblogs.com/iwtwiioi/p/4126284.html 暴力肯定会TLE,考虑转 ...
分类:其他好文   时间:2018-02-17 20:12:33    阅读次数:218
421条   上一页 1 ... 4 5 6 7 8 9 10 ... 25 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!