Skip to content
View sushlala's full-sized avatar

Block or report sushlala

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. lets-build-a-simple-db lets-build-a-simple-db Public

    Following along the "Let's Build a Simple Database" tutorial in Golang (https://cstack.github.io/db_tutorial/). The original tutorial is written in C

    Go 1 1

  2. An implementation of strtok An implementation of strtok
    1
    #include <stddef.h>
    2
    #include <stdbool.h>
    3
    #include <stdio.h>
    4
    
                  
    5
    bool is_delim(char c, char *delim)
  3. A simple hash table in c A simple hash table in c
    1
    #include <string.h>
    2
    #include <stdlib.h>
    3
    #include <stdio.h>
    4
    #include <assert.h>
    5
    
                  
  4. a trie implemented in Python a trie implemented in Python
    1
    from itertools import islice
    2
    from collections import defaultdict
    3
    from Queue import Queue
    4
    
                  
    5
    class Node(object):
  5. simple-hashtable simple-hashtable Public

    C

  6. vpp vpp Public

    Forked from FDio/vpp

    C