问题描述
- 创建模式树有点小疑问
- // 对应的字符索引为NULL
if(NULL == parent->childs[ch])
{
break;
}parent = parent->childs[ch];
这里的ch指的是什么,在定义中我们知道childs[256]这里可以childs[ch]呢?
时间: 2024-12-03 18:30:01
parent = parent->childs[ch];
这里的ch指的是什么,在定义中我们知道childs[256]这里可以childs[ch]呢?