自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 收藏
  • 关注

原创 Reverse Words in a String

#include#include#include#include#include#includeusing namespace std;class Solution {public:string reverseWords(string str) {if (str == "")return str;else {int i = 0;int j

2015-11-17 21:53:36 360

原创 strStr()

#include#include#include#includeusing namespace std; //从按行的角度出发,计算逐个需要存的字符的对应原串的下标。class Solution {public: int strStr(string haystack,string needle) { int i,j; // cout << needle.size(

2015-11-17 19:28:37 275

原创 Reverse Interger

#include#include#include#includeusing namespace std; //从按行的角度出发,计算逐个需要存的字符的对应原串的下标。class Solution {public:    int reverse(int x) {        if(x==0)        return x;        int bit

2015-11-08 13:17:32 303

原创 ZigZag Convertion

#include#include#include#includeusing namespace std; //从按行的角度出发,计算逐个需要存的字符的对应原串的下标。class Solution {public:Za    string convert(string s, int numRows) {string re= "";int len =s.size

2015-11-06 21:53:07 315

原创 TwoSum

#include#include#include#includeusing namespace std;//先对原始数组进行排序,建立一个新的Id vector存储各个元素排序之前的序号,//对小于target的部分用for循环判断是否为twosum和class Solution {public:    vector twoSum(vector& nums, i

2015-11-06 19:44:45 426 1

原创 word pattern

class Solution {public: bool wordPattern(string pattern, string str) { int p_len =pattern.size(); vector word ; int t=0; for(int i=0;i<str.size();i++) if (str[i]==' '){ string ww=s

2015-11-03 22:13:40 346

转载 【王晓刚】深度学习在图像识别中的研究进展与展望

from http://blog.csdn.net/linj_m/article/details/46351053深度学习是近十年来人工智能领域取得的最重要的突破之一。它在语音识别、自然语言处理、计算机视觉、图像与视频分析、多媒体等诸多领域都取得了巨大成功。本文将重点介绍深度学习在物体识别、物体检测、视频分析的最新研究进展,并探讨其发展趋势。1. 深度学习发展历史的回顾现有

2015-10-27 14:53:18 1951

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除