我需要检查内容并显示向量中每个值的频率。这可能吗?
也许您可以使用其中一个容器,例如vector。你可以push_back
所有的移动到这个向量中,直到到达原点。
这个矢量的大小将是移动的次数。您可以设置一个计数器阵列[400],用于计算移动到相同坐标的次数。
For each move,
- `push_back` the move into the vector.
- increment the counter array indexed by [the move].