一面   1,随意一个排序算法(我用的快排)   2,求一个成对数组中,只出现一次的数   3,引申,有多个只出现一次的情况   4.求连续3天都有销售量的 销售人员名单。   select  a.sales from t1 a left join t1 b on a.sales=b.sales  and  datediff(a.date,1)=b.date left join t1 c on b.sales=b.sales  and datediff(b.date,1)=c.date where c.sales is not null    5.生第一个男孩后第二个生女孩的概率   6.什么...