Keep coding, Keep hungry.
Yuxuan Wu
  • HOME
  • ARCHIVES
  • CATEGORIES
  • TAGS
  • ABOUT
  • HOME
  • ARCHIVES
  • CATEGORIES
  • TAGS
  • ABOUT
  • RNAseq demo in BIO316 CW1

    BIO316-CW1Requirements Briefly explain the results you obtained. You can use figures to illustrate the results, however, figu...
    2022-03-11
    • Bioinformatics
    • RNA modification
    • | notes
    • | bash
    Read more
  • bash command combo

    ls ls -lh The option -l of the command ls also reports the size of the file. Adding the flag -h makes it “human-readable” ...
    2022-01-20
    • Linux
    • notes
    Read more
  • Dynamic programming notes

    Dynamical programmingDefinition Extremely general algorithm design technique Similar to divide and conquer idea Build up answ...
    2021-11-26
    • CMUAlgoNotes
    • dp
    Read more
  • Linear programming notes

    Summary Many problems can be modeled as linear programs (LPs) If you can write your problem as an LP, you can use existing, h...
    2021-11-18
    • CMUAlgoNotes
    • lp
    Read more
  • Network flow problem notes

    Flow networkA flow network is a connected, directed graph G=(V,E) Each edge e has a non-negative, integer capacity A single...
    2021-11-08
    • CMUAlgoNotes
    • networkFlow
    Read more
  • b trees algo notes

    2,3 Trees All levels are at the same level Each internal node has either 2 or 3 children If it has: 2 children => it has 1...
    2021-10-30
    • CMUAlgoNotes
    • 2,3 tree
    • | B tree
    Read more
  • splay trees and BST algo notes

    BST definitionProperty: if a node has key k then keys in the left subtree are < k and keys in the right subtree are > k...
    2021-10-30
    • CMUAlgoNotes
    • splaytree
    • | BST
    Read more
  • skip list algo notes

    Background Generalization of sorted linked lists Expected search time is O(logn) Randomized data structure Use random coin fl...
    2021-10-29
    • CMUAlgoNotes
    • skiplist
    Read more
  • BellmanFord algorithm

    Shortest path problem review Bellman-ford algorithmNegative weightsNegative cycles: if some cycle has a negative total cost, ...
    2021-10-28
    • CMUAlgoNotes
    • graph
    • | BellmanFord
    Read more
  • A* algorithm

    Resourceshttps://www.redblobgames.com/pathfinding/a-star/introduction.html https://stackabuse.com/graphs-in-java-a-star-algor...
    2021-10-28
    • CMUAlgoNotes
    • graph
    • | A*
    Read more
Next
© 2020 - 2022 Yuxuan Wu
Visitor Count   Totalview
Powered by Hexo | Theme Keep v3.3.1