Skip to content

Instantly share code, notes, and snippets.

View qnoid's full-sized avatar
💭
I have been raised by women. My single mother, my grandma, my godmother.

Markos Zoulias Charatzas qnoid

💭
I have been raised by women. My single mother, my grandma, my godmother.
View GitHub Profile
@qnoid
qnoid / hashtable
Created April 7, 2011 15:33
graphical representation of a hashtable
9
6 7
3 4 5
[0, 1, 2] //buckets
^ ^ ^
0 1 2 //bucket index
|---3---| //hashtable length
@interface Item : NSObject
{
@private
UIImage *image;
NSString *value;
NSString *when;
}
@property(nonatomic, retain) UIImage *image;
@property(nonatomic, retain) NSString *value;