📄 groups.c
字号:
/*# 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; count = 0; 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);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -