本月博客排行
-
第1名
Xeden -
第2名
fantaxy025025 -
第3名
bosschen - paulwong
- johnsmith9th
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - gengyun12
- wy_19921005
- vipbooks
- e_e
- benladeng5225
- wallimn
- ranbuijj
- javashop
- jickcai
- fantaxy025025
- zw7534313
- qepwqnp
- robotmen
- 解宜然
- ssydxa219
- sam123456gz
- zysnba
- sichunli_030
- tanling8334
- arpenker
- gaojingsong
- xpenxpen
- kaizi1992
- wiseboyloves
- jh108020
- xyuma
- ganxueyun
- wangchen.ily
- xiangjie88
- Jameslyy
- luxurioust
- mengjichen
- lemonhandsome
- jbosscn
- nychen2000
- zxq_2017
- lzyfn123
- wjianwei666
- forestqqqq
- ajinn
- siemens800
- hanbaohong
- 狂盗一枝梅
- java-007
- zhanjia
- 喧嚣求静
- Xeden
最新文章列表
KMP算法的详细分析
前言
关于KMP算法的描述在网上可以说是多如牛毛,以前学习的时候也碰到过这个问题。只是一直对它的理解不够深刻。而在网上搜索了一通之后,发现大量的文章要么就是简单的说一下思路然后给一堆代码,要么就是纯粹讲理论,对于实际的实现没有任何帮助。自己在学习和实现整个算法的过程中也碰到过几个小的细节,被卡在那里很久。经过很久的揣摩才想清楚了一点,这里就把整个算法的思想和实现过程详细描述一下。希望能 ...
基础数据结构和算法十二:Hash table
Search algorithms that use hashing consist of two separate parts. The first part is to compute a hash function that transforms the search key into an array index. Ideally, different keys would map ...
基础数据结构和算法七:Priority queue & Heap sort
Some important applications of priority queues include simulation systems, where the keys correspond to event times, to be processed in chronological order; job scheduling, where the keys correspond ...
matlab(R2010a)找不到vs2010的c++编译器
matlab(R2010a)找不到vs2010的c++编译器,网上有很多解决的办法,但是大部分都很复杂,并且不一定好用,这里是matlab官方给出的解决方法,非常好用,很简便。
How can I use Microsoft Visual C++ 2010 to create MEX files with MATLAB 7.10 (R2010a)?
Date Last Modifie ...
matlab实现gabor filter 多种方式汇总
方式一:
function result = gaborKernel2d( lambda, theta, phi, gamma, bandwidth)
% GABORKERNEL2D
% Version: 2012/8/17 by watkins.song
% Version: 1.0
% Fills a (2N+1)*(2N+1) matrix with the values o ...
matlab实现gabor filter (8) 效果很好
gabor 滤波器函数:
function gb=gabor_fn(bw,gamma,psi,lambda,theta)
% bw = bandwidth, (1)
% gamma = aspect ratio, (0.5)
% psi = phase shift, (0)
% lambda= wave length, (>=2)
% theta = angle in r ...
matlab实现gabor filter (9) 效果很好
gabor filter:
function result = gaborkernel2d(lambda, sigma, theta, phi, gamma, bandwidth)
% VERSION 2004-04-05
% CREATED BY: N. Petkov and M.B. Wieling, Groningen University
%
% GABORKERNEL2D(LA ...
matlab实现gabor filter (10) 效果很好
gabor 滤波器 函数:
function [GaborReal, GaborImg] = MakeGaborKernal(GaborH, GaborW, U, V, Kmax,f,sigma )
% function [GaborReal, GaborImg] = MakeGaborKernal[GaborH, GaborW, U, V]
% 用以生成 Gabor 核
% Gabor ...
matlab实现gabor filter (3)
从wikipedia上找到一段gabor filter的代码,简单的写了生成5个尺度8个方向的滤波器组。
gabor filter的代码:
% 这个gabor实现是来自维基百科的,应该没有问题
% watkins
function gb=gabor(sigma,theta,lambda,psi,gamma)
sigma_x = sigma;
sigma_y = sigma ...
matlab实现gabor filter (5)
gabor filter源代码:
%%%%%%%VERSION 2
%%ANOTHER DESCRIBTION OF GABOR FILTER
%The Gabor filter is basically a Gaussian (with variances sx and sy along x and y-axes respectively)
%modulated by a compl ...
matlab实现gabor filter (6)
代码:
%%%%%%%VERSION 3
%%ANOTHER DESCRIBTION OF GABOR FILTER
%The Gabor filter is basically a Gaussian (with variances sx and sy along x and y-axes respectively)
%modulated by a complex sinusoid (with ...
连续子序列最大和与乘积问题的分析
问题描述
给定(可能是负的)整数序列A1, A2,...,AN, 寻找(并标识)使Sum(Ak)(k >=i, k <= j)的值最大的序列。如果所有的整数都是负的,那么连续子序列的最大和是零。
对应的乘积问题则要求同样求出连续子序列中乘积最大的部分。
我们这里针对最大和与最大乘积的问题分别进行讨论。
最大和
最简单暴力的解法
...
归并排序和插入排序
今晚看了一下麻省理工的算法公开课,看了一下国外是如何学习计算机的,算是涨了个见识,观看地址如下:
http://v.163.com/special/opencourse/algorithms.html
其中老师说,在数组大小超过30时,归并排序就比插入排序效率高,不知是否是真的
排序类,已经写好了插入排序
package com.yf.algorithm;
import java.util ...
Flash算法-摆动算法
[代码]
package com.klstudio.algorithms {
import flash.events.MouseEvent;
import flash.events.Event;
import flash.display.MovieClip;
import flash.display.Sprite;
/**
* 摆动算法
* @author Kin ...
几个常用最短路径算法
今天来总结一下常用的最短路径算法。符号简称:E -- # of edges; V -- # of vertexes
Single Source Shortest Path:
on non-weighted Graph: Bredth First Search
Non-Negative-Cylic Graph: Dikstra -- BFS + Priority Queue -- O( ...
quick sort
package tech.algorithms.sort;
import java.util.Random;
import java.util.Random;
public class QuickSort {
public static void main(String[] args) {
// int[] array = { 13, ...
Problem11
package com.yao.Algorithms;
import java.util.ArrayList;
import java.util.List;
/**
*
* @author shuimuqinghua77 @date 2011-11-6
*
*/
/**
* In the 2020 grid below, four numbers along a ...