2013-12-01から1ヶ月間の記事一覧

データ構造とアルゴリズム

c

http://ocw.mit.edu/courses/electrical-engineering-and-computer-science/6-087-practical-programming-in-c-january-iap-2010/lecture-notes/ でC言語を学習中。 例題をいくつかやってみた。 バイナリツリー #include <stdlib.h> #include <stdio.h> struct tnode { int data</stdio.h></stdlib.h>…

onScrollイベント

どの位置までスクロールしたかを拾ってみるテスト。 gist:8083161

Cache-Controlヘッダ

Cache-Controlヘッダについて、理解があやふやだったのでstudyinghttpとRFCを読んでまとめてみる。 http://www.studyinghttp.net/header http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.9.3 HTTP 1.0と1.1 HTTP/1.0ではCache-Controlは実装…