摘要: #include #include int Swquential_Search(int *a, int n, int key){ int i; a[0] = key; i = n; while(a[i] != key) { i--; } return i;} 阅读全文
posted @ 2013-04-27 17:45 纯洁的坏蛋 阅读(153) 评论(0) 推荐(0) 编辑