
木小猪算法笔记
算法
六斤的小猪猪呀
这个作者很懒,什么都没留下…
展开
-
字符串匹配-Boyer-Moore
/*Itme: Boyer-Moore string matching algorithmInternal support: Try to shift more positons once unmatching to match faster.Assistant tools: Bad-Char array: case1: pattern contai...原创 2020-04-05 13:15:18 · 158 阅读 · 0 评论 -
二叉树的遍历
一、测试用图二、代码示例#include<iostream>#include<vector>#include<stdlib.h>#include<queue>#include<stack>#include<stdio.h>typedef struct _Node { struct _Node* left;...原创 2020-02-22 10:16:53 · 185 阅读 · 0 评论