自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 资源 (1)
  • 收藏
  • 关注

原创 The Counting Words Benchmark for Various Kinds of Associative Arrays

The counting words benchmark for various kinds of associative arrays

2022-05-11 23:01:04 208 1

原创 Implementing a Bidirectional Communication popen() Using Pipes

Implementing a bidirectional communication `popen()` using pipes (rather than `socket`s)

2022-05-05 10:20:58 507

原创 Implementing a Minimum (yet Fully Functional) UNIX Shell

We know bash, we know fish. But now, let's get our hands dirty and build our own UNIX shell: a minimum yet fully functional shell :)

2022-04-26 22:19:05 1229

原创 Bloom Filter Probabilistic Data Structure

Bloom Filter Probabilistic Data Structure (See the theory part in BloomFilter.ipynb) #ifndef BLOOMFILTER_H #define BLOOMFILTER_H #include "Bitmap.h" #include <functional> // std::hash #include <vector> #include <random> #include <st

2022-03-27 15:10:06 414

原创 Some Popular String-Searching Algorithms

#include "StringSearch.h" #include <algorithm> // std::max, std::reverse_copy namespace myStringAlgo { // Brute-force string searching algorithm std::vector<int> BF_search(const std::string& pat, const std::string& txt) { co...

2022-03-22 12:13:55 516

原创 A Collection of Sorting Algorithms

Comparisons of some popular string sorting algorithms on sorting leipzig1M.txt (results taken from here): Method Time Hoare 7.8792s Quick3Way 7.5074s Fast3Way 5.78015s RadixSort 4.86149s Quick3String 4.3685s Heapsort 32.8318s MergeSort

2022-03-04 21:15:07 429

原创 Aasen's Algorithm

See also 'Matrix Computations 4e', P188 4.4.2 The method of Aason. u can download that book via Z-Library for free. % Aasen's algorithm : PAP.'=LTL.', where A is a n-by-n (dense) symmetric % matrix, L is a unit lower triangular matrix, P is a permutati

2020-05-14 15:29:19 280

Aasen's Symmetric Indefinite Linear Solvers in LAPACK.pdf

Aasen's Symmetric Indefinite Linear Solvers in LAPACK, by Ichitaro Yamazaki and Jack Dongarra

2020-05-14

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除