
LCA
文章平均质量分 81
fyfcauc
这个作者很懒,什么都没留下…
展开
-
poj-1470
//3452K 735MS C++#include #include const int MAX = 910;struct TreeNode { int NextBroId; int parentId;};typedef struct TreeNode TreeNode;int LCACounter[MAX];int querys[MAX][MAX];原创 2014-09-18 17:41:34 · 603 阅读 · 0 评论 -
poj-1330
//492K 32MS C++#include #include const int MAX = 10005;struct TreeNode { int NextBroId; int parentId;};struct Query { int nodeAId; int nodeBId;};typedef struct TreeNo原创 2014-09-18 14:21:24 · 620 阅读 · 0 评论 -
Android中通知的使用-----Notification详解
From: http://blog.youkuaiyun.com/qinjuning/article/details/6915482Notification —— 通知,是一种让你的应用程序在不使用Activity的情况下警示用户。它是看不见的程序组件(Broadcast Receiver,Service和不活跃的Activity)警示用户有需要注意的事件发生的最好途径。 Notification 是转载 2014-12-23 10:26:47 · 479 阅读 · 0 评论