BenBenBenBenBenB
码龄2年
  • 1,603
    被访问
  • 7
    原创
  • 800,479
    排名
  • 0
    粉丝
关注
提问 私信
  • 加入CSDN时间: 2020-02-08
博客简介:

BenBenBenBenBenB的博客

查看详细资料
个人成就
  • 获得0次点赞
  • 内容获得0次评论
  • 获得0次收藏
创作历程
  • 7篇
    2020年
成就勋章
  • 最近
  • 文章
  • 资源
  • 问答
  • 帖子
  • 视频
  • 课程
  • 关注/订阅/互动
  • 收藏
搜TA的内容
搜索 取消

NLP: Hidden Markov Model & Viterbi Algorithm

In NLP, we have a type of tasks called “Part-of-Speech Tagging”. It basically requires us to build up a model that can label the word in a sentence with correct part-of-speech tag. For example,Noun ...
原创
发布博客 2020.03.22 ·
199 阅读 ·
0 点赞 ·
0 评论

Algorithm Design and Analysis: Tarjan's Algorithm and its Proof

Hi there,Today, I want to talk about Tarjan’s algorithm that finds the strongly connected component (SCC). Before we dive into the amazing algorithm, let’s define SCC.SCC: in a directed graph, SCC...
原创
发布博客 2020.03.15 ·
70 阅读 ·
0 点赞 ·
0 评论

Algorithm Analysis & Design: Dynamic Programming - Optimal BST

Hi peers,In this essay, I will introduce a dynamic programming algorithm that can construct an optimal binary search tree. Before we talk about the algorithm, let’s first understand what an optimal B...
原创
发布博客 2020.02.24 ·
124 阅读 ·
0 点赞 ·
0 评论

Algorithm Design & Analysis: Single-linkage Clustering Algorithm & Proof

Hi peers,In this essay, I will talk about single-linkage clustering (SLC) algorithm. I will first give the problem definition of clustering problem. With proper concepts being introduced, I then give...
原创
发布博客 2020.02.22 ·
152 阅读 ·
0 点赞 ·
0 评论

Algorithm Design & Analysis: Dijkstra Algorithm - Proof of Correctness

Hi peers,Dijkstra algorithm is a greedy algorithm that finds the shortest paths from a given source vertex to all other vertices in a graph. In this short essay, I will review the pseudocode for Dijk...
原创
发布博客 2020.02.16 ·
297 阅读 ·
0 点赞 ·
0 评论

Algorithm Analysis and Design: Kruskal's Algorithm - Proof of Correctnes

Proof of Correctness – Kruskal AlgorithmHi peers,We know Prim’s algorithm can correctly find the minimum spanning tree (MST) in a given graph. Kruskal algorithm (“the algorithm” in the following con...
原创
发布博客 2020.02.09 ·
321 阅读 ·
0 点赞 ·
0 评论

Algorithm Design & Analysis: Prim's Algorithm - Proof of Correctness

Hi peers,Prim’s Algorithm is for finding the minimum spanning tree (MST) of a graph. It is simple, straightforward, and powerful. It always gives us the correct MST for an input graph every time. How...
原创
发布博客 2020.02.08 ·
180 阅读 ·
0 点赞 ·
0 评论