年度归档: 2022 年

3 篇文章

AcWing 785. 快速排序
#include <iostream> using namespace std; const int N = 100010; int num[N], n; void quick_sort(int num[], int l, int r){ if(l >= r) return; int x = num[(l+r)/2],…
thumbnail
VEX关键信息传递:关于固件版本马达特性问题
急政暴虐;赋敛不时;朝令而暮改。《汉书·食货志上》 事情起因 事情是这样经过的: 不知道VEXer们在已经完成的比赛和训练中有没有注意过以下事情: 在一场比赛结束或者自动赛结束时,也就是在Field Controller设定为Disabled时段时,马达的状态是什么? 我特地注意了这个问题,因为平衡桥的事情在今年显得尤为重要。 如果电机无法Hold…