actanble

导航

2017年4月14日 #

Algorithm Gossip (28) 格雷码 ( Gray Code)

摘要: 前言 This Series aritcles are all based on the book 《经典算法大全》; 对于该书的所有案例进行一个探究和拓展,并且用python和C++进行实现; 目的是熟悉常用算法过程中的技巧和逻辑拓展。 提出问题 28.Algorithm Gossip: 格雷码 阅读全文

posted @ 2017-04-14 22:44 白于空 阅读(294) 评论(0) 推荐(0) 编辑

Algorithm Gossip(51) 2(2N+1)魔方阵 (END)

摘要: 前言 This Series aritcles are all based on the book 《经典算法大全》; 对于该书的所有案例进行一个探究和拓展,并且用python和C++进行实现; 目的是熟悉常用算法过程中的技巧和逻辑拓展。 提出问题 51.Algorithm Gossip: 2(2N 阅读全文

posted @ 2017-04-14 22:39 白于空 阅读(119) 评论(0) 推荐(0) 编辑

Algorithm Gossip (50) 4N 魔方阵

摘要: 前言 This Series aritcles are all based on the book 《经典算法大全》; 对于该书的所有案例进行一个探究和拓展,并且用python和C++进行实现; 目的是熟悉常用算法过程中的技巧和逻辑拓展。 提出问题 50.Algorithm Gossip: 4N 魔 阅读全文

posted @ 2017-04-14 22:36 白于空 阅读(125) 评论(0) 推荐(0) 编辑

AlgorithmGossip (49) 奇数魔方阵

摘要: 前言 This Series aritcles are all based on the book 《经典算法大全》; 对于该书的所有案例进行一个探究和拓展,并且用python和C++进行实现; 目的是熟悉常用算法过程中的技巧和逻辑拓展。 提出问题 49.AlgorithmGossip: 奇数魔方阵 阅读全文

posted @ 2017-04-14 22:33 白于空 阅读(166) 评论(0) 推荐(0) 编辑

Algorithm Gossip (48) 上三角、下三角、对称矩阵

摘要: 前言 This Series aritcles are all based on the book 《经典算法大全》; 对于该书的所有案例进行一个探究和拓展,并且用python和C++进行实现; 目的是熟悉常用算法过程中的技巧和逻辑拓展。 提出问题 48.Algorithm Gossip: 上三角、 阅读全文

posted @ 2017-04-14 22:30 白于空 阅读(589) 评论(0) 推荐(0) 编辑

.Algorithm Gossip (47) 多维矩阵转一维矩阵

摘要: 前言 This Series aritcles are all based on the book 《经典算法大全》; 对于该书的所有案例进行一个探究和拓展,并且用python和C++进行实现; 目的是熟悉常用算法过程中的技巧和逻辑拓展。 提出问题 47.Algorithm Gossip : 多维矩 阅读全文

posted @ 2017-04-14 22:27 白于空 阅读(157) 评论(0) 推荐(0) 编辑

Algorithm Gossip (46) 稀疏矩阵存储

摘要: 前言 This Series aritcles are all based on the book 《经典算法大全》; 对于该书的所有案例进行一个探究和拓展,并且用python和C++进行实现; 目的是熟悉常用算法过程中的技巧和逻辑拓展。 提出问题 46.Algorithm Gossip:稀疏矩阵 阅读全文

posted @ 2017-04-14 22:24 白于空 阅读(128) 评论(0) 推荐(0) 编辑

Algorithm Gossip (45) 费氏搜寻法

摘要: 前言 This Series aritcles are all based on the book 《经典算法大全》; 对于该书的所有案例进行一个探究和拓展,并且用python和C++进行实现; 目的是熟悉常用算法过程中的技巧和逻辑拓展。 提出问题 45.Algorithm Gossip:费氏搜寻法 阅读全文

posted @ 2017-04-14 22:21 白于空 阅读(130) 评论(0) 推荐(0) 编辑

Algorithm Gossip (44) 插补搜寻法

摘要: 前言 This Series aritcles are all based on the book 《经典算法大全》; 对于该书的所有案例进行一个探究和拓展,并且用python和C++进行实现; 目的是熟悉常用算法过程中的技巧和逻辑拓展。 提出问题 44.Algorithm Gossip : 插补搜 阅读全文

posted @ 2017-04-14 22:16 白于空 阅读(163) 评论(0) 推荐(0) 编辑

Algorithm Gossip (43) 二分搜寻法

摘要: 前言 This Series aritcles are all based on the book 《经典算法大全》; 对于该书的所有案例进行一个探究和拓展,并且用python和C++进行实现; 目的是熟悉常用算法过程中的技巧和逻辑拓展。 提出问题 43.Algorithm Gossip:二分搜寻法 阅读全文

posted @ 2017-04-14 22:13 白于空 阅读(107) 评论(0) 推荐(0) 编辑

Algorithm Gossip (42) 循序搜寻法(使用卫兵)

摘要: 前言 This Series aritcles are all based on the book 《经典算法大全》; 对于该书的所有案例进行一个探究和拓展,并且用python和C++进行实现; 目的是熟悉常用算法过程中的技巧和逻辑拓展。 提出问题 42.Algorithm Gossip: 循序搜寻 阅读全文

posted @ 2017-04-14 22:10 白于空 阅读(149) 评论(0) 推荐(0) 编辑

Algorithm Gossip (41) 基数排序法

摘要: 前言 This Series aritcles are all based on the book 《经典算法大全》; 对于该书的所有案例进行一个探究和拓展,并且用python和C++进行实现; 目的是熟悉常用算法过程中的技巧和逻辑拓展。 提出问题 41.Algorithm Gossip: 基数排序 阅读全文

posted @ 2017-04-14 22:08 白于空 阅读(106) 评论(0) 推荐(0) 编辑

Algorithm Gossip (40) 合并排序法

摘要: 前言 This Series aritcles are all based on the book 《经典算法大全》; 对于该书的所有案例进行一个探究和拓展,并且用python和C++进行实现; 目的是熟悉常用算法过程中的技巧和逻辑拓展。 提出问题 40.Algorithm Gossip:合并排序法 阅读全文

posted @ 2017-04-14 22:05 白于空 阅读(119) 评论(0) 推荐(0) 编辑

AlgorithmGossip (39) 快速排序法 ( 三 )

摘要: 前言 This Series aritcles are all based on the book 《经典算法大全》; 对于该书的所有案例进行一个探究和拓展,并且用python和C++进行实现; 目的是熟悉常用算法过程中的技巧和逻辑拓展。 提出问题 39.AlgorithmGossip: 快速排序法 阅读全文

posted @ 2017-04-14 22:03 白于空 阅读(99) 评论(0) 推荐(0) 编辑

Algorithm Gossip (38) 快速排序法 ( 二 )

摘要: 前言 This Series aritcles are all based on the book 《经典算法大全》; 对于该书的所有案例进行一个探究和拓展,并且用python和C++进行实现; 目的是熟悉常用算法过程中的技巧和逻辑拓展。 提出问题 38.Algorithm Gossip:快速排序法 阅读全文

posted @ 2017-04-14 21:58 白于空 阅读(124) 评论(0) 推荐(0) 编辑

Algorithm Gossip (37) 快速排序法 ( 一 )

摘要: 前言 This Series aritcles are all based on the book 《经典算法大全》; 对于该书的所有案例进行一个探究和拓展,并且用python和C++进行实现; 目的是熟悉常用算法过程中的技巧和逻辑拓展。 提出问题 37.Algorithm Gossip:快速排序法 阅读全文

posted @ 2017-04-14 21:55 白于空 阅读(117) 评论(0) 推荐(0) 编辑

Algorithm Gossip (36) Heap排序法( 堆排序 )

摘要: 前言 This Series aritcles are all based on the book 《经典算法大全》; 对于该书的所有案例进行一个探究和拓展,并且用python和C++进行实现; 目的是熟悉常用算法过程中的技巧和逻辑拓展。 提出问题 36.Algorithm Gossip: Heap 阅读全文

posted @ 2017-04-14 21:46 白于空 阅读(110) 评论(0) 推荐(0) 编辑

Algorithm Gossip (35) Shaker法

摘要: 前言 This Series aritcles are all based on the book 《经典算法大全》; 对于该书的所有案例进行一个探究和拓展,并且用python和C++进行实现; 目的是熟悉常用算法过程中的技巧和逻辑拓展。 提出问题 35.Algorithm Gossip:Shake 阅读全文

posted @ 2017-04-14 21:41 白于空 阅读(129) 评论(0) 推荐(0) 编辑

Algorithm Gossip (34) 希尔排序

摘要: 前言 This Series aritcles are all based on the book 《经典算法大全》; 对于该书的所有案例进行一个探究和拓展,并且用python和C++进行实现; 目的是熟悉常用算法过程中的技巧和逻辑拓展。 提出问题 34.Algorithm Gossip: Shel 阅读全文

posted @ 2017-04-14 21:34 白于空 阅读(111) 评论(0) 推荐(0) 编辑

AlgorithmGossip (33) 选择、插入、气泡排序

摘要: 前言 This Series aritcles are all based on the book 《经典算法大全》; 对于该书的所有案例进行一个探究和拓展,并且用python和C++进行实现; 目的是熟悉常用算法过程中的技巧和逻辑拓展。 提出问题 33.AlgorithmGossip:选择、插入、 阅读全文

posted @ 2017-04-14 21:30 白于空 阅读(118) 评论(0) 推荐(0) 编辑