Tired of doing the same job? Get your hands on CFA-Level-II exam It is the nature of the human being that he/she will get tired of doing the same task ...
分类:
其他好文 时间:
2019-07-20 19:58:23
阅读次数:
111
Tired of doing the same job? Get your hands on CFA-Level-III exam It is the nature of the human being that he/she will get tired of doing the same tas ...
分类:
其他好文 时间:
2019-07-20 19:53:08
阅读次数:
94
前言 最近在学粒子系统,看这之前的 是基于Direct SDK的,而DXSDK微软已经很久没有更新过了并且我学的DX11是用Windows SDK来实现. 顺手安利一波:我最近在学DX11 with WindowSDK 教程 博客地址: https://www.cnblogs.com/X Jun/p ...
一:logging模块 (1)日志模块 (1)debug:调试信息 (2)info: 程序运行输出的信息 (3)warning:程序告警信息 (4)error:程序错误信息 (5)critical:严重错误 (2)日志等级: (1)debug:level = 10 (2)info: level = ...
分类:
其他好文 时间:
2019-07-19 21:04:16
阅读次数:
126
一、分类 MySQL的锁机制不同的存储引擎支持不同的锁机制,分为表级锁、行级锁、页面锁。MyISAM和MEMORY存储引擎采用的是表级锁(table-level locking);BDB存储引擎采用的是页面锁(page-level locking),但也支持表级锁;InnoDB存储引擎既支持行级锁( ...
分类:
数据库 时间:
2019-07-19 20:28:55
阅读次数:
97
1、让Runtime下的文件格式化:入口文件处:define('STRIP_RUNTIME_SPACE',false); 2、开发时不进行缓存:入口文件处:define('NO_CACHE_RUNTIME',true); 3、ThinkPHP支持四种访问模式:a:普通模式 b:pathinfo模式 ...
分类:
Web程序 时间:
2019-07-19 19:03:17
阅读次数:
131
使用logging提供的模块级别的函数记录日志: ...
分类:
编程语言 时间:
2019-07-17 18:13:16
阅读次数:
108
转自:https://www.cnblogs.com/cnxcfeng/articles/1162341.html SQL Server的四种隔离级别知识点整理,特别制作了流程图,方便以后查看! SET TRANSACTION ISOLATION LEVEL{ READ UNCOMMITTED | ...
分类:
数据库 时间:
2019-07-16 18:56:50
阅读次数:
169
1、给定二叉树,找到它的最小深度。最小深度是从根节点到最近叶节点的最短路径上的节点数。 2、给定二叉树,返回其节点值的后序遍历。 例如:给定二叉树{1,#,2,3}, 1 \ 2 / 3 返回[3,2,1]。 注意:递归解决方案很简单,你可以迭代地做吗? 思路: 前序遍历 根->左->右 变成 根- ...
分类:
其他好文 时间:
2019-07-16 11:02:54
阅读次数:
95
https://leetcode.com/problems/binary-tree-zigzag-level-order-traversal/ Medium Medium Medium Given a binary tree, return the zigzag level order traver ...
分类:
其他好文 时间:
2019-07-15 19:55:58
阅读次数:
133