把8位的CHAR型数据分解为:前5位和后3位,这样2^5 = 32个CHAR型数+值就可表示所有的CHAR型数据 这样做的好处:在给出子串后,不用比较256次,最多比较32次即可判断出是否一个数在子串中 /*** *int strspn(string, control) - find init substring of control chars * *Purpose: * Finds the index of the first character in string that does be…