自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(33)
  • 资源 (1)
  • 问答 (1)
  • 收藏
  • 关注

原创 神经网络模型学习笔记(ANN,BPNN)

神经网络模型

2017-08-30 20:55:51 66889 4

原创 R-CNN 学习笔记

R-CNN学习笔记这是深度学习的又一个比较大的创新。可以说利用深度学习进行目标检测的开山之作。这篇文章主要是讲利用对region proposal进行提取特征放入CNN,所以叫做R-CNN。下面就说说我读完这篇论文,我自己读懂,理解的东西。首先先说一下这个算法的过程。首先是对每一个输入的图像利用selective search的算法提取大约2000个建议框,也就是我们所说的prop

2016-07-15 15:01:36 680

原创 AlexNet简单理解&&CNN初步了解

AlexNet学习笔记这周阅读了这篇paper. 对AlexNet有了简单的了解。再加上对CNN,DL的初步了解。我就写一下我读完这篇文章之后对AlexNet的结构的了解吧。 1. AlexNet的模型结构。AlexNet利用了CNNs的这样一种模型,这个模型里包含有5个卷积层和3个全连接层,并且中间穿插着池化操作。卷积层就是用来进行卷积操作的,卷积运算就好比拿一张正方形的纸片

2016-07-03 17:19:27 5071 1

转载 int a[], &a与a的区别

错误理解:如果int a[5], 那么a与&a是等价的,因为两者地址相同。解答:一定要注意a与&a是不一样的,虽然两者地址相同,但意义不一样,&a是整个数组对象的首地址,而a是数组首地址,也就是a[0]的地址,a的类型是int[5],a[0]的类型是int,因此&a+1相当于a的地址值加上sizeof(int) * 5,也就是a[5],下一个对象的地址,已经越界了,而a+1相当于a的地址加

2016-04-16 16:14:27 2030 1

原创 int,char,long,long long,指针字节数。

自行查看。其中指针变量64位系统应该为8个字节。 我是64位系统。 但是显示的4字节,这是因为编译器的问题,编译器需要保证兼容性问题。想要8个字节可以自行设置

2016-04-16 15:52:24 3325

原创 const和static的作用以及区别

Static:存储方式:定义一个static变量时,编译器会在静态存储区为它分配空间,而不是在栈上。1. static变量如果声明在函数体中,它的作用范围是整个函数体。 需要注意它只会分配一次内存。所以多次调用这个函数不会多次给static变量重新赋值。因此它的值会保持上次调用时的值。2. static变量如果声明在模块中,它的作用范围是这个模块中的所有函数。它可以被这个模

2016-04-16 15:21:24 1926

原创 sicily 1172. Queens, Knights and Pawns

1172. Queens, Knights and PawnsConstraintsTime Limit: 1 secs, Memory Limit: 64 MB DescriptionYou all are familiar with the famous 8-queens problem which asks you to place 8 queens on a chess

2015-11-18 19:01:56 456

原创 sicily 1206. Stacking Cylinders

1206. Stacking CylindersConstraintsTime Limit: 1 secs, Memory Limit: 32 MB DescriptionProblem Cylinders (e.g. oil drums) (of radius 1 foot) are stacked in a rectangular bin. Each cylinder on

2015-11-18 17:09:26 380

原创 人工智能-8-puzzle爬山法(最陡上升,首项选择),随即重新启动法

#include#include#include#include#includeusing namespace std;int mubiao[3][3] = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 0 } };int current[3][3] = { { 1, 2, 3 }, { 4, 5, 6 }, { 7, 8, 0 } };int dir[

2015-11-10 18:11:47 1645

原创 人工智能-八皇后爬山法(最陡上升,首项选择),随即重新启动法

#include#include#include#includeusing namespace std;int qi[64];int maze[64];int check(int idx) { int index = idx; int row = index / 8; int col = index % 8; int j; int h = 0; int i; for

2015-11-10 18:07:59 4400

原创 sicily 1029. Rabbit

1029. RabbitConstraintsTime Limit: 1 secs, Memory Limit: 32 MB DescriptionThe rabbits have powerful reproduction ability. One pair of adult rabbits can give birth to one pair of kid rabbits

2015-10-21 22:41:57 367

原创 sicily 1381. a*b

1381. a*bConstraintsTime Limit: 1 secs, Memory Limit: 32 MB DescriptionGive two positive integers a and b, please help us calculate a*b.InputThe first line of the input is a positive int

2015-10-21 22:40:02 350

原创 sicily 1093. Air Express

1093. Air ExpressConstraintsTime Limit: 1 secs, Memory Limit: 32 MB DescriptionFly It Today! (FIT), an air express company, charges different amounts for packages depending on their weight.

2015-10-20 20:12:00 446

原创 android 新建项目 appcomat_v7项目出错

我也是个刚学android的新手。结果新建的第一个项目helloworld就出错了。郁闷死了。搞了半天才搞好。下面是我出错的情况。如果有和我类似情况的。可以参考这个链接。百度上搜出来的答案基本都是从这个帖子中断章取义出来的。http://bbs.csdn.net/topics/390936260希望

2015-10-14 13:59:23 352

原创 sicily 1063. Who's the Boss

1063. Who's the BossConstraintsTime Limit: 1 secs, Memory Limit: 32 MB DescriptionSeveral surveys indicate that the taller you are, the higher you can climb the corporate ladder. At TALL Ent

2015-10-11 17:06:32 498

原创 sicily 1050. Numbers & Letters

1050. Numbers & LettersConstraintsTime Limit: 3 secs, Memory Limit: 32 MB DescriptionIn the early 80’s, a popular TV show on Dutch television was ‘Cijfers en Letters’ (Numbers and Letters).

2015-10-11 17:04:34 497

原创 sicily 1009. Mersenne Composite N

1009. Mersenne Composite NConstraintsTime Limit: 1 secs, Memory Limit: 32 MB DescriptionOne of the world-wide cooperative computing tasks is the "Grand Internet Mersenne Prime Search" -- GIM

2015-10-11 17:03:25 273

原创 sicily 1007. To and Fro

1007. To and FroConstraintsTime Limit: 1 secs, Memory Limit: 32 MB DescriptionMo and Larry have devised a way of encrypting messages. They first decide secretly on the number ofcolumns and w

2015-10-11 17:02:08 397

原创 sicily 1006. Team Rankings

1006. Team RankingsConstraintsTime Limit: 1 secs, Memory Limit: 32 MB DescriptionIt's preseason and the local newspaper wants to publish a preseason ranking of the teams in the local amateur

2015-10-04 17:50:50 421

原创 sicily 1036. Crypto Columns

1036. Crypto ColumnsConstraintsTime Limit: 1 secs, Memory Limit: 32 MB DescriptionThe columnar encryption scheme scrambles the letters in a message (or plaintext) using a keyword as illustra

2015-10-04 15:02:31 387

原创 sicily 1151 魔板

1151. 魔板ConstraintsTime Limit: 1 secs, Memory Limit: 32 MB , Special Judge Description题目和A题相同,在这里我们把数据范围扩大:N可能超过10。请仔细考虑各种情况。Input输入包括多个要求解的魔板,每个魔板用三行描述。第一行步数N,表示最多容许的步数。第二、第三行表示目标

2015-10-04 13:49:41 323

原创 sicily 1176. Two Ends

1176. Two EndsConstraintsTime Limit: 1 secs, Memory Limit: 64 MB DescriptionIn the two-player game "Two Ends", an even number of cards is laid out in a row. On each card, face up, is written

2015-09-24 16:05:10 274

原创 sicily 1198. Substring

1198. SubstringConstraintsTime Limit: 1 secs, Memory Limit: 32 MB DescriptionDr lee cuts a string S into N pieces,s[1],…,s[N].   Now, Dr lee gives you these N sub-strings: s[1],…s[N]. Ther

2015-09-24 11:37:45 276

原创 sicily 1051. Biker's Trip Odomete

1051. Biker's Trip OdometeConstraintsTime Limit: 1 secs, Memory Limit: 32 MB DescriptionMost bicycle speedometers work by using a Hall Effect sensor fastened to the front fork of the bicycle

2015-09-23 21:44:08 237

原创 sicily 1046. Plane Spotting

1046. Plane SpottingConstraintsTime Limit: 1 secs, Memory Limit: 32 MB DescriptionCraig is fond of planes. Making photographs of planes forms a major part of his daily life. Since he tries t

2015-09-23 21:42:07 308

原创 sicily 1035. DNA matching

1035. DNA matchingConstraintsTime Limit: 1 secs, Memory Limit: 32 MB DescriptionDNA (Deoxyribonucleic acid) is founded in every living creature as the storage medium for genetic information.

2015-09-23 19:47:22 371

原创 sicily 1027. MJ, Nowhere to Hide

1027. MJ, Nowhere to HideConstraintsTime Limit: 1 secs, Memory Limit: 32 MB DescriptionOn BBS, there is a familiar term called MJ (short for MaJia), which means another BBS ID of one person

2015-09-23 19:45:46 354

原创 sicily 1021 couples

1021. CouplesConstraintsTime Limit: 1 secs, Memory Limit: 32 MB DescriptionN couples are standing in a circle, numbered consecutively clockwise from 1 to 2N. Husband and wife do not always s

2015-09-23 19:42:57 347

原创 sicily 1020 Big Integer

1020. Big IntegerConstraintsTime Limit: 1 secs, Memory Limit: 32 MB DescriptionLong long ago, there was a super computer that could deal with VeryLongIntegers(no VeryLongInteger will be nega

2015-09-23 19:35:55 337

原创 迷宫深度优先搜索 找出一条可行路径

请写一个程序,先输入迷宫的维度M和N,然后输入这个M * N的迷宫,迷宫位置上的数值为0代表该位置可以通过,为1代表该位置有障碍不能通过,用深度优先搜索算法搜出一条从迷宫左上角到右下角的路径。规定搜索顺序为上、下、左、右。如:迷宫为2 * 2的:0000搜索从左上角开始,到达右下角的路径应该是(0,0) (1,0) (1,1)Input 第一行是一个整数t,代表

2014-11-03 01:02:26 2991

原创 函数值传递,指针传递与引用传递的区别 及解释。

值传递 指针传递(一) (二)  传递引用  区别:值传递         被调函数对形式参数的任何操作都是作为局部变量进行,不会影响主函数中的实参变量的值。 指针传递(一)    这种方法是在被调函数中,传入n,m的地址给两个局部指针a,b。是原本指向n的a指向m,b指向n。这个函数仅仅使两个局部指针指向交换,对于n,m本身的值并无任何修改

2014-11-02 12:14:17 686

原创 幂集问题

我们先看百度百科对幂集的定义:所谓幂集(Power Set), 就是原集合中所有的子集(包括全集和空集)构成的集族。我们这个题的任务就是将一个集合的幂集解出来。我们假设原始集合是一个由数字组成的集合,并且是从1~N的连续整数。输入一个N,则这个集合的内容是{1, 2, 3, ……, N}。求解幂集之后按照一定的顺序输出出来,这个顺序是这样的:对于一个集合,我们将集合内的元素

2014-11-02 11:25:57 4133 1

原创 整数划分(递归)全部排列 (较简洁代码+详细注释)

首先介绍一下思路n表示被划分的数m表示划分中的最大值//   根据n和m的关系,考虑以下几种情况: //   (1)当 n = 1 时,不论m的值为多少(m > 0 ),只有一种划分即 { 1 };//   (2)  当 m = 1 时,不论n的值为多少,只有一种划分即 n 个 1,{ 1, 1, 1, ..., 1 };//   (3)  当 n = m 时,根据划分

2014-10-25 11:45:42 766

cudnn-9.1-windows7-x64-v7.1.3 tensorflow

cudnn-9.1-windows7-x64-v7.1.3 tensorflow yasuobao

2018-04-25

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

TA关注的人

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