码迷,mamicode.com
首页 > 2018年10月11日 > 全部分享
python的序列化与反序列化(例子:dict保存成文件,文件读取成dict)
dict保存成文件(对象序列化) 文件读取成dict(文件反序列化) print(d)的结果是 ...
分类:编程语言   时间:2018-10-11 13:42:52    阅读次数:589
HDU 4347 - The Closest M Points - [KDTree模板题]
本文参考: https://www.cnblogs.com/GerynOhenz/p/8727415.html kuangbin的ACM模板(新) 题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=4347 Problem Description The ...
分类:其他好文   时间:2018-10-11 13:42:34    阅读次数:151
React Warning: Hash history cannot PUSH the same path; a new entry will not be added to the history stack
前言: react-router-dom 4.4.2 在页面中直接使用 可能报错: browser.js?fec5:49 Warning: Hash history cannot PUSH the same path; a new entry will not be added to the his ...
分类:其他好文   时间:2018-10-11 13:42:28    阅读次数:2661
566. Reshape the Matrix
https://leetcode.com/problems/reshape-the-matrix/description/ 简单有趣,也稍微窥探了一下matlab 和numpy 里面reshape 的算法。当然现实要比这个题要复杂,比如numpy 里面reshape 可以只接受一个参数,然后自动推导 ...
分类:其他好文   时间:2018-10-11 13:42:20    阅读次数:129
关于“->”,“=>”,“::”这三个操作符的使用说明
关于“->”,“=>”,“::”这三个操作符的使用说明
分类:其他好文   时间:2018-10-11 13:42:11    阅读次数:95
C# Controller向View传值方式总结
http://www.cnblogs.com/key1309/p/ViewData_TempData_ViewBag_ViewModel_controller%E5%90%91View%E4%BC%A0%E5%80%BC.html ...
分类:Windows程序   时间:2018-10-11 13:42:02    阅读次数:228
leetcode543 - Diameter of Binary Tree - easy
Given a binary tree, you need to compute the length of the diameter of the tree. The diameter of a binary tree is the length of the longest path betwe ...
分类:其他好文   时间:2018-10-11 13:41:53    阅读次数:156
Web前端开发工具
篇幅过长 原文链接 "https://www.slidestalk.com/s/web_2_13938213680_rxl_jtcxtk" ...
分类:Web程序   时间:2018-10-11 13:41:44    阅读次数:195
51nod-1296: 有限制的排列
【传送门:51nod-1296】 简要题意: 有一个集合,集合中的数为1到n 给出a限制条件,a[i]表示第a[i]位置的数要比相邻位置的数要小 给出b限制条件,b[i]表示第b[i]位置的数要比相邻位置的数要大 求出符合条件的序列个数 题解: DP 设f[i][j]为i位数,最后一位为j的情况数 ...
分类:其他好文   时间:2018-10-11 13:41:29    阅读次数:267
centos7 安装mysql5.7
一、检查系统是否安装其他版本的MYSQL数据yumlistinstalled|grepmysqlyum-yremovemysql-libs.x86_64二、安装及配置wgethttp://repo.mysql.com/mysql-community-release-el7-5.noarch.rpmrpm-ivhmysql-community-release-el7-5.noarch.rpmyumr
分类:数据库   时间:2018-10-11 13:41:21    阅读次数:195
用户登录三次机会(PYTHON)
usename=shabi password=123456 i=3 while i > 0: zh = input("请输入你的用户名:") i - = 1 if zh == usename: lj = input("请输入你的密码:") if lj == password: print("验证成功 ...
分类:编程语言   时间:2018-10-11 13:41:05    阅读次数:616
django on_delete属性
今天在给stdent创建class外键时发生了error 原码: 错误原因: 在Django2.0后,定义外键和一对一关系的时候需要加on_delete选项,他是它将是Django 2.0中的必需参数。 修改后代码: Django官方文档对on_delete参数的解释 CASCADE 级联删除。Dj ...
分类:其他好文   时间:2018-10-11 13:40:50    阅读次数:1734
苹果和安卓机的兼容问题
1、js将时间转化为时间戳:https://blog.csdn.net/huangxiaoguo1/article/details/80082941 统一使用 下面的时间格式,不要使用 2017-08-12 23:00:00 这种时间格式 ...
分类:移动开发   时间:2018-10-11 13:40:42    阅读次数:153
Nginx修改access.log日志时间格式
摘自:https://www.cnblogs.com/bigberg/p/7774508.html 安装服务器:125.210.163.97所需安装软件目录:/opt/software nginx需要模块:http_stub_status_modulehttp_ssl_modulehttp_gzip ...
分类:数据库   时间:2018-10-11 13:40:34    阅读次数:507
DSB(双边带)调制
其中的函数T2F是信号的傅里叶变换 还有F2T傅里叶反变换 ...
分类:其他好文   时间:2018-10-11 13:40:25    阅读次数:416
windows 下载~安装nginx
////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// ...
分类:Windows程序   时间:2018-10-11 13:40:08    阅读次数:231
git idea no changes detected
最近idea改了文件后用git会显示no changes detected 查出来我是因为新安装了git,路径有变化。所以把idea里的git路径改一下就好了,如下图: ...
分类:其他好文   时间:2018-10-11 13:39:59    阅读次数:2375
1067条   上一页 1 ... 37 38 39 40 41 42 43 ... 63 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!