摘要:
#include <stdio.h>#include <string.h>#include <stdlib.h>#include <limits.h>void swap(unsigned char *a, unsigned char *b);/* @brief reverse an array, whose index is equal and larger than lo, and equal and smaller then high*/void reverse(unsigned char array[], int lo, int high) 阅读全文