先睹为快fromdjango.dbimportmodelsclassPerson(models.Model):first_name=models.CharField(max_length=30) last_name=models.CharField(max_length=30) 核心要点 ...
分类:
其他好文 时间:
2014-08-12 13:00:24
阅读次数:
171
题意:给你n个字符串,给你一个序列,两个人轮流取一个字符使得现有的字符串是n个字符串里面的前缀,最后谁不能取谁就输掉这局,但是他们要玩K局,谁在K局赢了就等于赢了一整场比赛。解题思路:字典树找是否有 必输 或者 必赢 的策略,如果同时有必赢或者必输的策略,那必定是first赢,如果只有必赢,那只需要...
分类:
其他好文 时间:
2014-08-12 12:59:54
阅读次数:
205
Problem Description
Let's play a card game called Gap.
You have 28 cards labeled with two-digit numbers. The first digit (from 1 to 4) represents the suit of the card, and the second digit (from 1 ...
分类:
其他好文 时间:
2014-08-12 10:24:14
阅读次数:
379
Series 1
大意:
题意不好翻译,英文看懂也不是很麻烦,就不翻译了。
Problem Description
Let A be an integral series {A1, A2, . . . , An}.
The zero-order series of A is A itself.
The first-order series of A i...
分类:
其他好文 时间:
2014-08-12 10:21:42
阅读次数:
241
Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your maximu...
分类:
其他好文 时间:
2014-08-12 10:15:23
阅读次数:
149
原文地址:感谢原文作者 http://blog.csdn.net/gentle_wolf/article/details/14004345不贴图片了,太累。Code First 约定借助 CodeFirst,可通过使用 C# 或Visual Basic .NET 类来描述模型。模型的基本形状可通过约...
分类:
其他好文 时间:
2014-08-11 17:28:02
阅读次数:
348
数据结构—队列
1、队列的定义
队列(Queue)也是一种运算受限的线性表,它的运算限制与栈不同,是两头都有限制,插入只能在表的一端进行(只进不出),而删除只能在表的另一端进行(只出不进),允许插入的一端称为队尾(rear),允许删除的一端称为队头 (Front)
队列模型
2、队列的操作
队列的操作原则是先进先出的,所以队列又称作FIFO表(First...
分类:
其他好文 时间:
2014-08-11 02:58:31
阅读次数:
323
1、初试:1 2 3 My First Heading4 My first paragraph.5 6 2、标题:HTML 标题(Heading)是通过 - 等标签进行定义的。显然由大标题变为小标题....1 2 3 Thi...
分类:
编程语言 时间:
2014-08-11 00:19:01
阅读次数:
274
【Description】
A queue is a collection that implements the first-in-first-out protocal. This means that the only accessiable object in the collection in the first one that was inserted. The most commo...
分类:
其他好文 时间:
2014-08-10 21:43:10
阅读次数:
236