码迷,mamicode.com
首页 >  
搜索关键字:books store opencart 自适应主题模板 abc-0093    ( 6401个结果
Extjs 4.2使用心得 --- store和reader使用技巧
最近老大要求使用Extjs写前端,故研究了一番。这玩意功能比起jquery-ui等确实功能强大很多,效果也比较高大上,但是确实比较难使用。本人智商欠费各种坑都跳遍了才试出成果,现主要记录下store和reader的心得。 在介绍store之前先说下Model,Model代表应用程序管理的一些对...
分类:Web程序   时间:2014-07-31 20:28:57    阅读次数:253
UVA714- Copying Books(最大值最小化)
题意:k份书稿分成m份,使得每份的和最小 思路:典型最大值最小化问题,使用贪心+二分。贪心的是每次尽量将元素往右边划分,二分查找最小的x满足m个连续的子序列和S(i)都不超过x。 因为输出的原因,在划分时就从后往前尽量划分。 #include #include #include #include using namespace std; typedef long ...
分类:其他好文   时间:2014-07-31 13:29:27    阅读次数:178
AWS系列之三 使用EBS
Amazon Elastic Block Store(EBS)可作为EC2实例的持久性数据块级存储。其具有高可用性和持久性的特点,可用性高达99.999%。给现有的EC2实例扩展新的存储块只需要几分钟的时间,省时省力。每个EBS块都被放置在一个特定的可用区内,并且会自动维护一个副本,随时保护数据安全...
分类:其他好文   时间:2014-07-31 02:21:15    阅读次数:363
NGUI实现ScrollView功能
NGUI,目前Unity3D Assert Store中最火的2D图形界面工具。本文假设读者有Unity3D使用经验。有基本了解。NGUI3.6.01.新建Pannel(Scroll View),确保Clliping为soft Clip2.Add Component增加Scroll View3.在S...
分类:其他好文   时间:2014-07-30 20:17:54    阅读次数:234
上传文件
For example, the following code will store uploaded files under /media/photos regardless of what yourMEDIA_ROOT setting is:from django.db import model...
分类:其他好文   时间:2014-07-30 00:52:02    阅读次数:207
ExtJS 动态加载树treepanel
先来看看效果:一、新建一个TreeStore,并添加根节点Ext.define('Demo1.store.TreeDemoStore', { extend: 'Ext.data.TreeStore', root: { text: '目录树', id: 0 ...
分类:Web程序   时间:2014-07-29 20:47:42    阅读次数:290
【HackerRank】 Chocolate Feast
Little Bob loves chocolates, and goes to the store with $N money in his pocket. The price of each chocolate is $C. The store offers a discount: for ev...
分类:其他好文   时间:2014-07-29 20:35:22    阅读次数:306
netty4——is not a @Sharable handler
State management(handler的状态管理) A ChannelHandler often needs to store some stateful information. The simplest and recommended approach is to use member variables: public?interface?Message?...
分类:Web程序   时间:2014-07-29 16:22:59    阅读次数:317
HDU 3033 I love sneakers! (DP 01背包+完全背包)
Problem Description After months of hard working, Iserlohn finally wins awesome amount of scholarship. As a great zealot of sneakers, he decides to spend all his money on them in a sneaker store. ...
分类:其他好文   时间:2014-07-29 14:42:05    阅读次数:273
uva714 - Copying Books(最大值最小化)
题目:uva714 - Copying Books(最大值最小化) 题目大意:给出n本书,每本书的值代表这本书的页数。然后给定m个scribers,每个scriber至少要抄一本书,或者连续的几本书。每个scriber的工作量就等于他要抄的书的页数之和。问怎样划分能使的scribers中工作量的最大值最小。这里要求答案如果有多种的话就输出前面的和比较小的那个划分。 解题思路:最...
分类:其他好文   时间:2014-07-29 14:29:38    阅读次数:173
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!