最近在学习openstack方面的知识,并做一些定制化的开发,一开始实现的思路非常的明确,就是前后端分离,前端开发直接调用后端的API 接口。在这种场景下,就选择了RESTful架构,由于笔者之前没有怎么接触过前端和RESTful架构,所以对此不是特别 ...
分类:
其他好文 时间:
2017-12-06 21:46:37
阅读次数:
213
以前学习硬件方面知识比较多,对深度学习知识有一定的了解。最近开始学习深度学习来提升自己。 深度学习 首先要了解深度学习的概念。深度学习的概念源于人工神经网络的研究。含多隐层的多层感知器就是一种深度学习结构。深度学习通过组合低层特征形成更加抽象的高层表示属性类别或特征,以发现数据的分布式特征表示。 深 ...
分类:
其他好文 时间:
2017-12-01 15:12:51
阅读次数:
166
You are given a tree (an acyclic undirected connected graph) with N nodes, and edges numbered 1, 2, 3...N 1. We will ask you to perfrom some instructi ...
分类:
其他好文 时间:
2017-12-01 15:12:38
阅读次数:
154
Given a list of strings words representing an English Dictionary, find the longest word in words that can be built one character at a time by other wo ...
分类:
其他好文 时间:
2017-11-30 11:56:38
阅读次数:
123
分析:本题要得出结果难度不大,但是会遇到Time Exceed Limited的错误,因此降低时间复杂度是关键。我的解题思路比较简单,首先为paris创建字典,找出所有与指定词有直接关系的近义词。例如paris 形成的字典如下: 接下来就是遍历words1和words2,遇到不相同词,直接根据key ...
分类:
其他好文 时间:
2017-11-30 10:24:08
阅读次数:
140
简介: String作为日常最常用的类,还是有必要对其中的细节做一些了解的,这篇就结合源码来看看这个常用的类。 一. 总述 类图如下: 从图中可以看到String是实现了 java.io.Serializable, Comparable<String>, CharSequence这三个接口的fina ...
分类:
其他好文 时间:
2017-11-29 18:13:44
阅读次数:
157
Suppose you have a long flowerbed in which some of the plots are planted and some are not. However, flowers cannot be planted in adjacent plots - they ...
分类:
其他好文 时间:
2017-11-29 16:08:24
阅读次数:
166
Description: Given a non-negative integer represented as a non-empty array of digits, plus one to the integer. You may assume the integer do not conta ...
分类:
其他好文 时间:
2017-11-26 21:03:32
阅读次数:
131
错误:Could not open JDBC Connection for transaction; nested exception is java.sql.SQLException: The server time zone value '?????????' is unrecognized o ...
分类:
数据库 时间:
2017-11-26 20:31:34
阅读次数:
290
题目链接:http://poj.org/problem?id=1698 题目: Description Alice, a charming girl, have been dreaming of being a movie star for long. Her chances will come n ...
分类:
其他好文 时间:
2017-11-26 14:02:57
阅读次数:
153