教小白媳妇编程 & 教媳妇小白 EXCEL
Title | Title Chinese | Video | Blog | Date |
---|---|---|---|---|
Nearest Exit from Entrance in Maze via Iterative Deepening Search (IDS, DLS, DFS, BFS) | 第46课 教媳妇编程: 迭代深化搜索算法找迷宫入口最近的出口 | Youtube - B站 - 西瓜 | Nearest Exit from Entrance in Maze via Iterative Deepening Search (IDS, DLS, DFS, BFS) | 2023-08-28 |
Nearest Exit from Entrance in Maze via Breadth First Search Algorithm (BFS) | 第45课 教媳妇编程: 广度优先搜索算法找迷宫入口最近的出口 | Youtube - B站 - 西瓜 | Nearest Exit from Entrance in Maze via Breadth First Search Algorithm (BFS) | 2022-12-04 |
Recursive Algorithm to Count and Say a Number String | 第44课 教媳妇编程: 数数字字符串的递归算法 | Youtube - B站 - 西瓜 | Recursive Algorithm to Count and Say a Number String | 2022-10-23 |
Concatenation of Consecutive Binary Numbers | 第43课 教媳妇编程: 计算连续二进制数的串联的值 | Youtube - B站 - 西瓜 | Concatenation of Consecutive Binary Numbers | 2022-09-25 |
Three Algorithms to Compute the Combination Number (Recursion, Memoziation, and Dynamic Programming) | 第42课 教媳妇编程: 求组合数的三种算法(递归 + 动态规划) | Youtube - B站 - 西瓜 | Three Algorithms to Compute the Combination Number (Recursion, Memoziation, and Dynamic Programming) | 2022-09-14 |
Introduction to Graph Data Structure and Graph Theory | 第41课 教媳妇编程: 计算机图论 - 图是什么?怎么样存储图? | Youtube - B站 - 西瓜 | Introduction to Graph Data Structure and Graph Theory | 2022-09-04 |
Matrix Tranpose Algorithm | 第40课 教媳妇编程: 矩阵转置算法 (Matrix Transpose) | Youtube - B站 - 西瓜 | Matrix Tranpose Algorithm | 2022-06-08 |
Running Sum of the 1-D Array (Accumulate, Prefix Sum) | 第39课 教媳妇编程: 一维数组的前缀和算法 | Youtube - B站 - 西瓜 | Running Sum of the 1-D Array (Accumulate, Prefix Sum) | 2022-06-01 |
Find Numbers in At Least Two Arrays Out of Three (Hash Set) | 第38课 教媳妇编程: 找出至少出现在2个数组的数(哈希集合) | Youtube - B站 - 西瓜 | Find Numbers in At Least Two Arrays Out of Three (Hash Set) | 2022-06-01 |
Longest Increasing Subsequence via Binary Search Algorithm (Greedy) | 第37课 教媳妇编程: 最长递增子序列之二分搜索算法(贪心) | Youtube - B站 - 西瓜 | Longest Increasing Subsequence via Binary Search Algorithm (Greedy) | 2022-05-22 |
Longest Increasing Subsequence via Dynamic Programming Algorithm | 第36课 教媳妇编程: 最长递增子序列之动态规划算法 | Youtube - B站 - 西瓜 | Longest Increasing Subsequence via Dynamic Programming Algorithm | 2022-05-13 |
Two Algorithms to Group Anagrams (Hash Table) | 第35课 教媳妇编程: Anagram 字符串分组的两种算法(哈希表) | Youtube - B站 - 西瓜 | Two Algorithms to Group Anagrams (Hash Table) | 2022-05-05 |
Find the First Bad Version via Binary Search Algorithm | 第34课 教媳妇编程: 二分搜索算法查找第一个坏的版本 | Youtube - B站 - 西瓜 | Find the First Bad Version via Binary Search Algorithm | 2022-04-27 |
Algorithms to Check If a Linked List Has a Cycle | 第33课 教媳妇编程: 判断单向链表是否有环 | Youtube - B站 - 西瓜 | Algorithms to Check If a Linked List Has a Cycle | 2022-04-27 |
Max Subarray Sum via Bruteforce, Greedy and Kadane's Algorithm (Dynamic Programming) | 第32课 教媳妇编程: 最大子列表之和(暴力搜索, 贪心, 动态规划 aka Kadane's 卡蛋算法) | Youtube - B站 - 西瓜 | Max Subarray Sum via Bruteforce, Greedy and Kadane's Algorithm (Dynamic Programming) | 2022-04-18 |
Fast and Slow Pointer Algorithm to Find the Middle of a Linked List | 第31课 教媳妇编程: 快慢指针找单向链表的中间 | Youtube - B站 - 西瓜 | Fast and Slow Pointer Algorithm to Find the Middle of a Linked List | 2022-04-18 |
Introduction to Dynamic Programming Algorithm | 第30课 教媳妇编程: 动态规划算法简介 | Youtube - B站 - 西瓜 | Introduction to Dynamic Programming Algorithm | 2022-04-13 |
Pass by Values, References or Object-References in Python | 第29课 教媳妇编程: Python中传递值、引用或对象引用 | Youtube - B站 - 西瓜 | Pass by Values, References or Object-References in Python | 2022-04-13 |
Left/Right Side View of Binary Tree using Recursive Depth First Search Algorithm | 第28课 教媳妇编程: 深度优先搜索算法求二叉树的左右视图 | Youtube - B站 - 西瓜 | Left/Right Side View of Binary Tree using Recursive Depth First Search Algorithm | 2022-03-25 |
Left/Right Side View of Binary Trees using Breadth First Search Algorithm | 第27课 教媳妇编程: 广度优先搜索算法求二叉树的左右视图 | Youtube - B站 - 西瓜 | Left/Right Side View of Binary Trees using Breadth First Search Algorithm | 2022-03-25 |
Recursive Merge Sort Algorithm | 第26课 教媳妇编程: 归并排序算法 Merge Sort Algorithm | Youtube - B站 - 西瓜 | Recursive Merge Sort Algorithm | 2022-03-12 |
Recursive Quick Sort Algorithm | 第25课 教媳妇编程: 快速排序算法 Quick Sort Algorithm | Youtube - B站 - 西瓜 | Recursive Quick Sort Algorithm | 2022-03-05 |
Algorithm to Check Valid Parentheses String using Stack | 第24课 教媳妇编程: 有效的括号字符串匹配算法(堆栈) | Youtube - B站 - 西瓜 | Algorithm to Check Valid Parentheses String using Stack | 2022-02-27 |
Simple Algorithm to Check a Valid Parentheses String | 第23课 教媳妇编程: 有效的括号字符串算法 | Youtube - B站 - 西瓜 | Simple Algorithm to Check a Valid Parentheses String | 2022-02-18 |
Algorithm to Search in a Binary Search Tree | 第22课 教媳妇编程: 二叉搜索树的查找算法 | Youtube - B站 - 西瓜 | Algorithm to Search in a Binary Search Tree | 2022-02-13 |
Algorithms to Check Anagram Strings (Sorting, Hash Table) | 第21课 教媳妇编程: Anagram字迷判断算法 (排序, 哈希表) | Youtube - B站 - 西瓜 | Algorithms to Check Anagram Strings (Sorting, Hash Table) | 2022-02-04 |
Algorithm to Convert Decimal Number (Base 10) to Binary | 第20课 教媳妇编程: 十进制转二进制算法 | Youtube - B站 - 西瓜 | Algorithm to Convert Decimal Number (Base 10) to Binary | 2022-01-27 |
Algorithm to Convert Binary Numbers to Decimal | 第19课 教媳妇编程: 二进制转十进制算法 | Youtube - B站 - 西瓜 | Algorithm to Convert Binary Numbers to Decimal | 2022-01-21 |
Solve Jump Game via Breadth First Search Algorithm | 第18课 教媳妇编程: 广度优先(BFS)搜索算法(Jump Game跳跃游戏) | Youtube - B站 - 西瓜 | Solve Jump Game via Breadth First Search Algorithm | 2022-01-17 |
Solve Jump Game via Recursive Depth First Search Algorithm | 第17课 教媳妇编程: 深度优先(DFS)搜索算法(Jump Game跳跃游戏) | Youtube - B站 - 西瓜 | Solve Jump Game via Recursive Depth First Search Algorithm | 2022-01-06 |
Three Algorithms to Compute the Inverse of a Factorial (Math, Binary Search) | 第16课 教媳妇编程: 计算反阶乘的三种算法 (Inverse Factorial - 数学, 二分搜索) | Youtube - B站 - 西瓜 | Three Algorithms to Compute the Inverse of a Factorial (Math, Binary Search) | 2021-12-26 |
Merge Two Sorted List (Linked List) | 第15课 教媳妇编程: 合并两个有序列表/链表 | Youtube - B站 - 西瓜 | Merge Two Sorted List (Linked List) | 2021-12-16 |
Introduction to Algorithm Runtime and Space Complexity | 第14课 教媳妇编程: 算法复杂度初探 | Youtube - B站 - 西瓜 | Introduction to Algorithm Runtime and Space Complexity | 2021-12-07 |
Sum of Digits for a Non-negative Integer | 第13课 教媳妇编程: 非负整数数字之和 | Youtube - B站 - 西瓜 | Sum of Digits for a Non-negative Integer | 2021-12-01 |
Python Code to Compute Average, Median and Mode (Math) | 第12课 教媳妇编程: 平均数(Average)、中位数(Median)和众数(Mode)的计算 (Python入门) | Youtube - B站 - 西瓜 | Python Code to Compute Average, Median and Mode (Math) | 2021-11-24 |
Algorithms to Check Palindrome String | 第11课 教媳妇编程: 回文字符串的判别算法 (Palindrome) | Youtube - B站 - 西瓜 | Algorithms to Check Palindrome String | 2021-11-18 |
Introduction to Tree Data Structure and Breadth First Search Algorithm | 第10课 教媳妇编程: (二叉)树数据结构和广度优先算法 | Youtube - B站 - 西瓜 | Introduction to Tree Data Structure and Breadth First Search Algorithm | 2021-11-08 |
Introduction to Queue and Double-Ended Queue in Python | 第9课 教媳妇编程: Python数据结构之队列(双头队列) | Youtube - B站 - 西瓜 | Introduction to Queue and Double-Ended Queue in Python | 2021-11-03 |
Using Stack to Reverse a List (Introduction to Stack in Python) | 第8课 教媳妇编程: 使用堆栈反转列表(Python 中的堆栈介绍) | Youtube - B站 - 西瓜 | Using Stack to Reverse a List (Introduction to Stack in Python) | 2021-10-26 |
Introduction to Hash Table and Hash Set (Python) | 第7课 教媳妇编程: Python 入门之哈希表和集合 (Hash Table & Hash Set) | Youtube - B站 - 西瓜 | Introduction to Hash Table and Hash Set (Python) | 2021-10-20 |
Three ways to compute the Fibonacci Numbers (Recursion and Iteration) | 第6课 教媳妇编程: 计算斐波那契数列的三种方法 | Youtube - B站 - 西瓜 | Three ways to compute the Fibonacci Numbers (Recursion and Iteration) | 2021-10-13 |
Tuple vs. List in Python | 第5课 教媳妇编程: Python 入门之 Tuple 和 List (元组和数组列表) | Youtube - B站 - 西瓜 | Tuple vs. List in Python | 2021-10-07 |
While Loop, If Condition and Functions | 第4课 教媳妇编程: 7分钟讲Python的while循环, IF分支判断和函数定义 | Youtube - B站 - 西瓜 | - | 2021-10-01 |
Variables and For Loop in Python | 第3课 教媳妇编程: 3分钟讲Python的变量和For循环 | Youtube - B站 - 西瓜 | - | 2021-09-26 |
From Linear Search to Binary Search | 第2课 教媳妇编程: 从暴力搜索(线性搜索)到二分查找算法 | Youtube - B站 - 西瓜 | From Linear Search to Binary Search | 2021-09-22 |
Recursion in Five Minutes | 第1课 教媳妇编程: 5分钟讲递归 | Youtube - B站 - 西瓜 | Recursion in Five Minutes | 2021-09-20 |
教媳妇小白 EXCEL
Title | Title Chinese | Video | Blog | Date |
---|---|---|---|---|
Excel: Two Dimensional Table Lookup via Index and Match Function | 教媳妇 EXCEL - 用INDEX和MATCH函数来实现二维表格查找 | Youtube - B站 - 西瓜 | - | 2022-09-11 |
The vlookup, hlookup and xlookup functions in Excel | 教媳妇 EXCEL - 十分钟学会 vlookup, hlookup 和 xlookup | Youtube - B站 - 西瓜 | - | 2022-09-08 |