?? groups.c
字號(hào):
/*# proc: int_groups - determines the number of contiguous groupings of# proc: characters belonging to a given set within another string.*/int_groups(alignment, alen, set)int *alignment, alen;char *set;{ int i, count; i = 0; while(i < alen){ while((i < alen) && (!is_in_int_set(alignment[i], set))) i++; if(i < alen) count++; while((i < alen) && (is_in_int_set(alignment[i], set))) i++; } return(count);}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號(hào)
Ctrl + =
減小字號(hào)
Ctrl + -