首页 > 2019年12月21日 > 全部分享
《语音信号处理》 语音识别章节 读书笔记
https://blog.csdn.net/eqiang8848/article/details/88967905 https://blog.csdn.net/eqiang8848/article/details/89671922 https://zhuanlan.zhihu.com/p/33464 ...
分类:其他   时间:2019-12-21 23:51:09    收藏:0  评论:0  赞:0  阅读:167
Find the Weak Connected Component in the Directed Graph
Description Find the number Weak Connected Component in the directed graph. Each node in the graph contains a label and a list of its neighbors. (a we ...
分类:其他   时间:2019-12-21 23:50:48    收藏:0  评论:0  赞:0  阅读:146
WPF之行为
Behavior的运用扩展了”交互“功能,以下记录示例: 在的项目中添加两个引用:Microsoft.Expression.Interactions.dllSystem.Windows.Interactivity.dll 主要是实现OnAttached()和OnDetaching()方法,在OnAt ...
分类:Windows开发   时间:2019-12-21 23:50:27    收藏:0  评论:0  赞:0  阅读:158
spring中bean的作用域属性singleton与prototype的区别
spring中bean的作用域属性single与prototype的区别 ...
分类:编程语言   时间:2019-12-21 23:49:51    收藏:0  评论:0  赞:0  阅读:138
一起学MyBatis之入门篇(2)
本文主要讲解MyBatis中类型转换的功能,其实在MyBatis中,提供了默认的数据类型之间的转换,但只是基本数据类型的转换,如果跨类型进行转换,则需要自定义转换类,如java中是boolean类型,在数据库中则是int类型,则需要进行java类型到jdbc类型的转换。本文仅供学习分享使用,如有不足... ...
分类:其他   时间:2019-12-21 23:49:25    收藏:0  评论:0  赞:0  阅读:119
Surrounded Regions
Description Given a 2D board containing 'X' and 'O', capture all regions surrounded by 'X'. Description Given a 2D board containing 'X' and 'O', captu ...
分类:其他   时间:2019-12-21 23:49:07    收藏:0  评论:0  赞:0  阅读:117
C/C++ 项目编译工具简介
本文基于一个需要对 C 语言家族项目进行编译、生成解决方案的开发者的视角,对编译过程中所需要的各个工具进行简要的名词解释。 GCC | LLVM 提供编译器 ...
分类:编程语言   时间:2019-12-21 23:48:49    收藏:0  评论:0  赞:0  阅读:104
Maven项目使用mybatis报错 org.apache.ibatis.binding.BindingException: Invalid bound statement (not found):
maven项目使用mybatis时,找不到mapper文件(.xml) 错误信息提示: ![ ](http://free cn 01.oss.tusy.xyz/ddimg/jfs/t1/92837/38/6948/117628/5df77827Eaf2713ae/cce8b4401dca5184.p ...
分类:Web开发   时间:2019-12-21 23:48:11    收藏:0  评论:0  赞:0  阅读:127
窗口部件及窗口类型
窗口部件和窗口类型并不是Qt中才有的概念,其他的平台中也有类似的概念。 图形用户界面由不同的窗口和窗口组件构成(也就是说窗口和窗口组件是图形用户界面开发中的最小单元)<QtGui>头文件包含窗口组件,对应Qt中的GUI模块Qt以组件对象的方式构建图形用户界面 组件的类型:——容器类(父组件):用于包 ...
分类:其他   时间:2019-12-21 23:47:06    收藏:0  评论:0  赞:0  阅读:159
B1013
python语言运行这道题有一个点运行超时,需要对求素数的算法进一步的优化 def isPrime(n): if n <= 1: return False i = 2 while i * i <= n: if n % i == 0: return False i += 1 return True i ...
分类:其他   时间:2019-12-21 23:46:43    收藏:0  评论:0  赞:0  阅读:98
《Interest Rate Risk Modeling》阅读笔记——第五章:久期向量模型
[toc] 第五章:久期向量模型 思维导图 久期向量的推导 $$ V_0 = \sum_{t=t_1}^{t_n} CF_t e^{ \int_0^t f(s)ds} $$ $$ V^\prime_0 = \sum_{t=t_1}^{t_n} CF_t e^{ \int_0^t f^\prime(s ...
分类:其他   时间:2019-12-21 23:46:15    收藏:0  评论:0  赞:0  阅读:157
django中将settings中全局变量应用于模板templates中
以项目名dispy为例,把站点名变量应用于模板中 ⑴ 在项目目录下创建dispy/global_settings.py文件 from django.conf import settings def get_global_settings(request): context = { 'site_nam ...
分类:其他   时间:2019-12-21 23:45:57    收藏:0  评论:0  赞:0  阅读:152
flask项目结构
项目结构 -app - static文件夹 - templates文件夹 - views文件夹 - 蓝图的视图 user - __init__.py(from .user import user_bp 注册蓝图,使用懒加载,init_view(app)) - __init__.py, create_ ...
分类:其他   时间:2019-12-21 23:45:24    收藏:0  评论:0  赞:0  阅读:86
12月21 链表初体验
要考试了,但是,忍不住想写代码,哪怕不复习要挂科。。。本末倒置了 本来想写一个树,但是,思路有点乱,就像先写一个链表,考完试再说,对于链表,我都是自己看书的,由于前一张结构体理解不够深,踩了好多坑。 所以,学习还是要一步一步,沉心静气来呐。 又看了好些结构体,树的东西,然后,不断试错,调试了一下午, ...
分类:其他   时间:2019-12-21 23:45:06    收藏:0  评论:0  赞:0  阅读:122
c语言文件
#include<stdio.h> #include<stdlib.h> #include<string.h> struct student{ char name[20]; char num[20]; char sex[20]; char clas[20]; char score[20]; }stu ...
分类:编程语言   时间:2019-12-21 23:44:39    收藏:0  评论:0  赞:0  阅读:113
JavaScript002,验证输入
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> </head> <body> <p>检查输入的内容是否为数字</p> <!-- 建立文本框输入内容,placeholder=''可以在里面输入提示信息 --> < ...
分类:编程语言   时间:2019-12-21 23:44:04    收藏:0  评论:0  赞:0  阅读:88
Eclipse一些技巧
1:测试某个测试溢出,修改堆内存大小 鼠标右键程序 在run as里面的run configuration 里 设置: ...
分类:系统服务   时间:2019-12-21 23:43:32    收藏:0  评论:0  赞:0  阅读:161
Less(3)
1.先判断注入类型 (1)首先看到要求,要求传一个ID参数,并且要求是数字型的;?id=1 (2)再输入?id=1' 显示报错,报错信息多了一个括号,判断接收到的参数可能为id=('1') (3)输入?id=1') --+ 显示正常 说明我们的判断正确 2.对列数进行判断 (1)输入?id=1') ...
分类:其他   时间:2019-12-21 23:43:14    收藏:0  评论:0  赞:0  阅读:96
EtherNet/IP CIP协议
EtherNet/IP CIP协议 1.EtherNet/IP简述 EtherNet/IP(Ethernet/Indstrial Protocol,以太网/工业协议)是一种基于以太网和TCP/IP技术的工业以太网,其物理层和数据链路层使用以太网协议,网络层和传输层使用TCP/IP协议族中的协议,应用 ...
分类:Web开发   时间:2019-12-21 23:42:54    收藏:0  评论:0  赞:0  阅读:324
Bomb Enemy
Description Given a 2D grid, each cell is either a wall 'W', an enemy 'E' or empty '0' (the number zero), return the maximum enemies you can kill usin ...
分类:其他   时间:2019-12-21 23:42:36    收藏:0  评论:0  赞:0  阅读:117
1480条   上一页 1 2 3 4 ... 74 下一页
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!