自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

Uni ACM

已搬家,戳 - > tideline.logdown.com

  • 博客(2)
  • 资源 (1)
  • 收藏
  • 关注

原创 Segment Tree Template

#define lson l,m,n<<1 #define rson m+1,r,n<<1|1 int num[MAXN],sum[MAXN<<2],max[MAXN<<2],add[MAXN<<2]; void pushUp(int n) { sum[n]=sum[n<<1]+sum[n<<1|1]; max[n]=max(max[n<<1],max[n<<1|1]); } void

2014-02-11 10:38:52 838 1

原创 Binary Indexed Tree Template

//memset c 0 before use int c[MAXN]; //n -> update place //v -> update value void update(int n,int v) { for(;n<=MAXN;n+=(n&-n)) c[n]+=v; } //get the sum from 1 to n (BIT starts from 1) int read(i

2014-02-11 10:38:12 793 3

Android Apps for Absolute Beginners

The Target: The Programming Neophyte As you may have inferred from the title, this book assumes that you have never programmed before in any programming language. It is written for someone who has never written a single line of code, and who is thus unfamiliar with object-oriented programming (OOP) languages such as Oracle’s Java and markup languages such as XML. Both of these open source languages are used extensively in creating Android applications and will be taught thoroughly in this book. There are a lot of Java and Android books out there, but all of those books assume that you have programmed before and know all the OOP and programming lingo. I wanted to write a book that takes readers from knowing absolutely nothing about programming; not even knowing about how to install a software development kit (SDK) or an integrated development environment (IDE), all of the way from Ground Zero to being able to program useful Android applications using Java and XML and new media assets such as images, audio, and animation.

2013-11-29

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除