总结

来源:互联网 发布:行知中学住宿条件 编辑:程序博客网 时间:2024/06/10 06:37

1、并查集:http://hihocoder.com/contest/hihointerview15/solution/831238

2、二分查找:下一篇博客

3、http://blog.csdn.net/dlf123321/article/details/52670461

4、linux网络编程 http://blog.csdn.net/chencheng126/article/details/44260859

5、数组初始化为最大值:

const int inf=0x7f7f7f7f;
memset(dp,inf,sizeof(dp));

6、const指针必须初始化

int * const b;
这样会出错

0 0
原创粉丝点击