自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

matrixdodo

quick learner

  • 博客(12)
  • 资源 (9)
  • 收藏
  • 关注

原创 [leetcode64]Minimum Path Sum

None.............

2015-09-25 13:25:23 725

转载 multithreading

转自: 廖学峰大神多线程一个进程至少有一个线程。 线程是操作系统直接支持的执行单元,因此,高级语言都支持多线程。 python的多线程是真正的posix thread,并不是模拟出来的线程。 原来,在标准库中有多线程模块,_thread以及threading。其中,_thread是低级模块,threadind是其封装版,比较高级。 使用高级模块不易出错,并且比较方便。import time

2015-09-24 17:32:25 681

原创 [leetcode54] Spiral Matrix

none

2015-09-23 21:36:27 405

原创 [blabla]a quick code about linear regression using gradient descent

use linear regression to predict the house pricethe original data is from the cousera machine learning course. when I finished the exercise with MATLAB, the idea about implementing the algorithm with

2015-09-22 11:42:09 783

原创 [leetcode284]Peeking Iterator

问题描述:Given an Iterator class interface with methods: next() and hasNext(), design and implement a PeekingIterator that support the peek() operation – it essentially peek() at the element that will be r

2015-09-21 13:59:17 903

原创 [note]构建常量

none

2015-09-20 14:40:27 531

原创 [笔记]图

graph概念vertex 节点A vertex (also called a “node”) is a fundamental part of a graph. It can have a name, which we will call the “key.” A vertex may also have additional information. We will call this addi

2015-09-19 20:38:15 815

原创 [leetcode126]word ladder 2

word ladder 2Given two words (beginWord and endWord), and a dictionary’s word list, find all shortest transformation sequence(s) from beginWord to endWord, such that:Only one letter can be changed at a

2015-09-18 23:42:02 634

原创 [leetcode127]Word Ladder Problem

Word Ladder Problem问题描述: Given two words (beginWord and endWord), and a dictionary’s word list, find the length of shortest transformation sequence from beginWord to endWord, such that:Only one letter

2015-09-18 23:16:44 469

原创 [笔记] binarySearchTree AVLTree

binary search treesearch tree operations1.tree() 2.put(key,value) 3.get(key) 4.in() 5.delete() 6.len()binary search tree nodeclass TreeNode(object): def __init__(self,key,val,left=None,right=N

2015-09-06 17:06:04 847

转载 python 2 编码问题

原作者:wuyou @newsmthPython2 的编码问题一直非常让人恼火,不过你的问题稍微简单一些。 在交互式命令模式(Interactive shell)下,可以这样来明白你遇到的问题的根源: >>> import sys >>> sys.stdout.encoding 在 Windows 下,如果你的系统是简体中文,一般输出会是 cp936 >>> impor

2015-09-06 13:32:32 689

原创 [笔记] lista += listb 与 lista = lista + listb

在一次编程中,错误的以为这两个方法的效果是相同的。细细想来才发现不对的地方, 以前都忽略掉了。 >>> g[12, 3, 4, 5, 9]>>> id(g)41829576L>>> g+=[0]   # 相当于 append>>> id(g)41829576L>>> g = g + [9]>>> id(g)41853768L

2015-09-01 00:00:57 984

salary-Entry-on-PhD-fellows.pdf

Entry on PhD fellows in Denmark 20220930

2022-09-30

A simple adaptive first-order differential microphone.pd

一阶差分麦克风 差分麦克风 自适应 差分麦克风 自适应 差分麦克风 自适应 差分麦克风 自适应

2018-04-08

windows SDK installer based on .net 4.0

windows SDK installer based on .net 4.0

2017-06-18

.net framework 4.0 installer

.net framework 4.0 installer

2017-06-18

email data for naive bayes filter

email data for naive bayes filter. for further information, please drop in my blog.

2017-01-15

bird_tracking.csv 鸟类迁徙数据2013

bird_tracking.csv 鸟类迁徙数据2013

2016-12-09

Ian Goodfellow introduction to GANs ( Generative Adversarial Networks)

NIPS2016 12-9 Ian Goodfellow introduction to GANs ( Generative Adversarial Networks)

2016-12-09

linux下can总线驱动

linux下can总线驱动

2016-04-13

HangMan 猜单词 一个简易的吊死鬼游戏 python版

一个很简单的猜单词游戏。 你的机会是有限的,你每猜错一次,你要拯救的小人就出现一部分。 当整个小人出现的时候,游戏结束,你便看到了惨象:一个吊死的屌丝!大笑 可以把单词换成你每天背的单词,便于复习。。。

2016-03-22

CNN 神经网络练习

cs231n的assignment1. 含有kNN,svm算法。

2015-01-16

空空如也

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

TA关注的人

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