摘要:
冒泡排序 void BubbleSort(int a[], int n) { int i, j; for (i = 0; i < n; i++) { for (j = i+1; j < n; j++) { if (a[i] > a[j]) { int t = a[i]; a[i] = a[j]; a 阅读全文
摘要:
顺序查找 二分查找 二叉排序树 平衡二叉树 多路查找 哈希表 阅读全文
摘要:
updating 阅读全文
摘要:
环境:Ubuntu 16.04 LTS , root身份 apache手册:http://httpd.apache.org/docs/current/install.html 在安装apache之前,需要先安装APR、APR-util、PCRE 另外Ubuntu需要安装libexpat1-dev,C 阅读全文