Aspect Oriented Programming, AOP, allows to reuse logic across an entire app in a very neat way, decoupling it from the business logic. Kaop-ts bring ...
分类:
其他好文 时间:
2018-08-26 10:27:04
阅读次数:
148
给定一个赎金信 (ransom) 字符串和一个杂志(magazine)字符串,判断第一个字符串ransom能不能由第二个字符串magazines里面的字符构成。如果可以构成,返回 true ;否则返回 false。 (题目说明:为了不暴露赎金信字迹,要从杂志上搜索各个需要的字母,组成单词来表达意思。 ...
分类:
其他好文 时间:
2018-08-26 01:13:03
阅读次数:
129
问题 E: Envious Exponents 时间限制: 1 Sec 内存限制: 128 MB提交: 321 解决: 53[提交] [状态] [讨论版] [命题人:]<!--StartMarkForVirtualJudge--> 题目描述 Alice and Bob have an integer ...
分类:
其他好文 时间:
2018-08-26 01:12:34
阅读次数:
185
###spring 1.概念:开源,轻量级,简化开发的企业级框架。 2.特点: ###spring容器(IOC容器) Spring容器:Spring容器装bean对象的。 Bean:能创建对象的类 开发步骤: 1)创建maven 2) 添加一个web.xml 3) 添加tomcat 4) 在pom里 ...
分类:
编程语言 时间:
2018-08-26 00:09:14
阅读次数:
140
题目描述: 原题:https://vjudge.net/problem/UVA-699 题目思路: 1.依旧二叉树的DFS 2.建树过程中开个数组统计 //紫书源代码WA AC代码: ...
分类:
其他好文 时间:
2018-08-26 00:06:17
阅读次数:
156
The Unknown Word The First Column|The Second Column : :|: : LSTM|Long Short Term Memory 长短时期记忆单元 fine tunning|微调 DBN|Deep Belief Network 深度信念网络 unsupe ...
分类:
其他好文 时间:
2018-08-25 23:06:13
阅读次数:
416
1、定义 定义一个用于创建对象的接口,让子类决定实例化哪一个类,工厂方法使一个类的实例化延迟到其子类。 (工厂模式是我们最常用的实例化对象模式了,是用工厂方法代替new操作的一种模式) 2、模式分类 工厂模式根据抽象程度的不同分为三种:简单工厂模式(也叫静态工厂模式)、工厂方法模式、以及抽象工厂模式 ...
分类:
其他好文 时间:
2018-08-25 23:02:08
阅读次数:
206
Dream Problem Description Freshmen frequently make an error in computing the power of a sum of real numbers, which usually origins from an incorrect e ...
分类:
其他好文 时间:
2018-08-25 21:23:10
阅读次数:
347
Description Jessica's a very lovely girl wooed by lots of boys. Recently she has a problem. The final exam is coming, yet she has spent little time on ...
分类:
其他好文 时间:
2018-08-25 21:19:44
阅读次数:
151
要在控制器之间传递变量变化需要使用angular中的$broadcast和$emit方法来传递,同时使用$on来接收事件并作出响应。 broadcast译为广播,即上级传递下级。 示例代码: 上述代码使用$watch监听parent的值的变化,当发生变化时就会“广播”出parentChange事件并 ...
分类:
其他好文 时间:
2018-08-25 20:11:58
阅读次数:
198