Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要编写一个对大范围数字进行分类的方法。我已经写了标识的枚举。
enum op { memLoad = 130, memStore, //etc }
对于某些标识,我有一个范围,例如,0-120 - are registers numbers 我不能将 121 个这样的(注册)标识符一一添加到枚举中。您如何建议处理此类标识符(定义为范围)?谢谢,
0-120 - are registers numbers
实现分类的更复杂的方法可能是使用神经网络,如WEKA 分类。
我不认为 enum 不是您要解决的问题的正确工具。
我建议使用区间树来获得富有表现力和快速的代码。