タグ

sortに関するtact_tomiのブックマーク (2)

  • jQuery Sortable

    A flexible, opinionated sorting plugin for jQuery View on GitHub Download (v0.9.13) Download minified version (9.7 kb, gzipped ~3.2 kb) So what does it do? Sorts any items in any container Fully supports nested containers Connect lists Callbacks and events (see docs) Pure drag/drop lists Vertical and horizontal sorting Why another sortable plugin? you might ask. Aren't there many others? The answe

  • 多次元配列でのソート - kuangueの日記

    多次元配列でソートってのを最近perlいじってないので,perlでやってみることにしました. 元はといえば,perlに構造体が無いことをはじめて今日知ったわけですね.まぁ,私がperlを使う場面といったら,なんとなくテキスト処理.しかも,sed&awkで処理できない場合に限っているので,しょうがない. でだ,構造体のソートがしたかったわけです. struct hoge { int id; char* moge; char* koge; }; をidでソートみたいにね.で,構造体無いので,みなさんhash使っているようでしたが,別に, use constant XXX;ってので定数が宣言できるようなので多次元配列でべつにいいじゃんということになりました. use constant ID=0; use constant MOGE=1; use constant KOGE=2; $hoge[0]

    多次元配列でのソート - kuangueの日記
    tact_tomi
    tact_tomi 2011/09/29
    「sort {$a->[45] cmp $b->[45]} @temp_package
  • 1