函数模版的定义: template <typename T> T const& max(const T& a,const T b) { return a > b ? a:b; } int main() { return 0; } 函数模版的使用: #include <iostream> #include <string> using namespace std; template <typename T> T const& ma…
找新朋友 Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others) Problem Description 新年快到了,“猪头帮协会”准备搞一个聚会,已经知道现有会员N人,把会员从1到N编号,其中会长的号码是N号,凡是和会长是老朋友的,那么该会员的号码肯定和N有大于1的公约数,否则都是新朋友,现在会长想知道究竟有几个新朋友?请你编程序帮会长计算出来. Input 第一行是测试数据的组…
回调的英文定义: A callback is a function that is passed as an argument to another function and is executed after its parent function has completed. 字面上的理解,回调函数就是一个参数,将这个函数作为参数传到另一个函数里面,当那个函数执行完之后,再执行传进去的这个函数.这个过程就叫做回调. 其实也很好理解对吧,回调,回调,就是回头调用的意思.主函数的事先干完,回头再…