Skip to content

Instantly share code, notes, and snippets.

@joannakl
joannakl / git_resources.md
Created June 20, 2020 20:20
Git resources and tutorials
#include <stdlib.h>
#include <stdio.h>

typedef struct  {
    int val;
    struct node *next;
} node;

node* create_node ( int x ) {
@joannakl
joannakl / run 14 full output
Created November 23, 2019 16:12
run 14 full output
[ 3R, 6R, 4R, 1L, 3L, 4 , 2L, 5R, 3R, 0 , 3 , 6R, 4L, 1 , 3 , 4 , 2 , 5R, 3 , 0 , 3 , 6 , 4R, 1 , 3 , 4R, 2R, 5 , 3L, 0 ]
[ 3R, 6R, 4R, 1L, 3L, 4 , 2L, 5R, 3 , 0 , 3 , 6R, 4R, 1 , 3L, 4 , 2L, 5R, 3 , 0 , 3 , 6 , 4R, 1 , 3 , 4R, 2R, 5 , 3L, 0 ]
[ 3R, 6R, 4R, 1L, 3L, 4 , 2L, 5R, 3 , 0 , 3 , 6 , 4R, 1 , 3R, 4 , 2L, 5R, 3 , 0 , 3 , 6 , 4R, 1 , 3 , 4R, 2R, 5 , 3L, 0 ]
[ 3R, 6R, 4R, 1L, 3L, 4 , 2L, 5R, 3 , 0 , 3 , 6R, 4R, 1 , 3 , 4L, 2R, 5R, 3L, 0 , 3 , 6 , 4R, 1 , 3 , 4R, 2R, 5 , 3L, 0 ]
[ 3R, 6R, 4R, 1L, 3L, 4 , 2L, 5R, 3 , 0 , 3 , 6R, 4R, 1 , 3 , 4L, 2R, 5R, 3R, 0 , 3 , 6L, 4R, 1 , 3 , 4R, 2R, 5 , 3L, 0 ]
[ 3R, 6R, 4R, 1L, 3L, 4 , 2L, 5R, 3 , 0 , 3 , 6 , 4R, 1 , 3 , 4 , 2R, 5 , 3R, 0 , 3 , 6R, 4R, 1 , 3 , 4R, 2R, 5L, 3L, 0 ]
[ 3R, 6 , 4R, 1L, 3R, 4 , 2L, 5R, 3R, 0 , 3 , 6R, 4L, 1 , 3 , 4 , 2 , 5R, 3 , 0 , 3 , 6 , 4R, 1
@joannakl
joannakl / resources_OSSD.md
Created August 21, 2019 18:39
Resources for OSSD class
@joannakl
joannakl / resources_CSO.MD
Last active August 13, 2019 14:38
Resources for Computer Systems Organization class

C resources

  • How to write a good C main function by Erik O'Shaughnessy - an intro areticle about writing and anatomy of a simple C program (including defines, command line arguments, etc)
  • How to structure a multi-file C program by Erik O'Shaughnessy
    • Part 1 - start working on a C program composed of multiple files
    • Part 2 - Dive deeper into the structure of a C program composed of multiple files in the second part of this article

What every computer scientist should know

@joannakl
joannakl / resources_QR.md
Last active August 26, 2019 20:20
Resources for Quantitative Reasoning class (Math and Computing)
@joannakl
joannakl / resources_APS.md
Last active February 26, 2025 11:29
Resources for Algorithmic Problem Solving
@joannakl
joannakl / resources_data_structures.md
Last active June 20, 2020 20:13
Reseources for Data Structures (Java)