摘要:
假设你还不知道邻接表的概念和作用etc: 请猛戳:http://baike.baidu.com/view/549594.htm?fr=aladdin struct Edge { int v; int next; }e[maxm]; memset(head,-1;sizeof(head); int c 阅读全文
posted @ 2017-04-16 11:04
zhchoutai
阅读(178)
评论(0)
推荐(0)
摘要:
<?xml version="1.0" encoding="utf-8"?> <resources> <declare-styleable name="ArrowTextView"> <attr name="radius" format="dimension" /> <attr name="arro 阅读全文
posted @ 2017-04-16 10:20
zhchoutai
阅读(2552)
评论(0)
推荐(0)
摘要:
addr2line有什么作用呢? 可别小瞧它, 它能够定位到代码出错的位置。 以下, 我们来看看这个简单的代码: #include <stdio.h> int main() { int *p = NULL; *p = 0; printf("bad\n"); return 0; } 这个程序非常小, 阅读全文
posted @ 2017-04-16 09:04
zhchoutai
阅读(1963)
评论(0)
推荐(1)