摘要:
模块以Email为例: 1、执行build目录下的脚本文件envsetup.sh $ source ./build/envsetup.sh 2、选择版本(user为用户版本 eng为工程版本) $ lunch You're building on Linux Lunch menu... pick a 阅读全文
摘要:
1、打开配置文件: $ sudo vim /etc/network/interfaces 2、修改文件内容: # This file describes the network interfaces available on your system # and how to activate the 阅读全文
摘要:
//快速排序法 void QuickSort(int *a, int left, int right) { int i = left; int j = right; int k = a[left]; if (i >= j) { return; } while (i = a[i])) { i++; } a[j] = a[i]; } a[i] = k; ... 阅读全文