摘要:
from:http://www.addictivetips.com/mobile/android-partitions-explained-boot-system-recovery-data-cache-misc/Unless you have been using your Android pho... 阅读全文
摘要:
void swap(void *v[], int a, int b){ void* tmp; tmp = v[a]; v[a]=v[b]; v[b]=tmp;}/* qsort: sort v[left]...v[right] into increasing order */void qsort(void *v[], int left, int right, int (*comp)(void *, void *)){ int i, last; if (left >= right) /* do nothing if array contains */ retur... 阅读全文