摘要: Given a 2D board and a word, find if the word exists in the grid. The word can be constructed from letters of sequentially adjacent cell, where "adjac 阅读全文
posted @ 2015-05-25 21:39 linqiaozhou 阅读(368) 评论(0) 推荐(0) 编辑
摘要: 转自:https://github.com/exoticknight/blog-post/blob/master/python-with-Qt-application-development/python%20%C3%97%20Qt%E5%BA%94%E7%94%A8%E5%BC%80%E5%8F%... 阅读全文
posted @ 2015-05-25 15:35 linqiaozhou 阅读(35406) 评论(0) 推荐(4) 编辑
摘要: The gray code is a binary numeral system where two successive values differ in only one bit. Given a non-negative integer n representing the total num 阅读全文
posted @ 2015-05-23 15:47 linqiaozhou 阅读(784) 评论(0) 推荐(0) 编辑
摘要: The n-queens puzzle is the problem of placing n queens on an n×n chessboard such that no two queens attack each other. Given an integer n, return all 阅读全文
posted @ 2015-05-22 16:19 linqiaozhou 阅读(232) 评论(0) 推荐(0) 编辑
摘要: Jump Game I Given an array of non-negative integers, you are initially positioned at the first index of the array. Each element in the array represent 阅读全文
posted @ 2015-05-22 10:28 linqiaozhou 阅读(756) 评论(0) 推荐(0) 编辑
摘要: 转自:http://blog.csdn.net/zouxy09/article/details/87815439.5、Convolutional Neural Networks卷积神经网络 卷积神经网络是人工神经网络的一种,已成为当前语音分析和图像识别领域的研究热点。它的权值共享网络结构使之更类似于... 阅读全文
posted @ 2015-05-19 10:35 linqiaozhou 阅读(3747) 评论(0) 推荐(0) 编辑
摘要: C++项目,解决方案总文件夹下就只包含解决方案配置文件sln和一个项目总文件夹和一个Debug文件夹以及一个Release文件夹(共四个东东,其中Debug和Release文件夹中存放最终生成的结果exe或dll,要注意如果不使用Release生成,则不存在Release文件夹),而项目总文件夹下包... 阅读全文
posted @ 2015-05-17 16:44 linqiaozhou 阅读(18049) 评论(0) 推荐(1) 编辑
摘要: 转:http://blog.csdn.net/wenrenhua08/article/details/40040903v8 - V8 JavaScript EngineV8 是 Google 的开源 JavaScript 引擎。V8 采用 C++ 编写,可在谷歌浏览器(来自 Google 的开源浏览... 阅读全文
posted @ 2015-05-17 16:43 linqiaozhou 阅读(2229) 评论(0) 推荐(0) 编辑
摘要: 一些细节老是记不住,索性转到自己的博客了转自:http://blog.csdn.net/kingstar158/article/details/6859379在看C++编程思想中,每个练习基本都是使用ofstream,ifstream,fstream,以前粗略知道其用法和含义,在看了几位大牛的博文后... 阅读全文
posted @ 2015-05-17 16:42 linqiaozhou 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 转载至:http://blog.csdn.net/bluescorpio/article/details/4322682C++中对象的复制就如同“克隆”,用一个已有的对象快速地复制出多个完全相同的对象。一般而言,以下三种情况都会使用到对象的复制:(1)建立一个新对象,并用另一个同类的已有对象对新对... 阅读全文
posted @ 2015-05-17 16:41 linqiaozhou 阅读(208) 评论(0) 推荐(0) 编辑