#include
#define MAX_TASKS 2 //任务槽个数.必须和实际任务数一至
#define MAX_TASK_DEP 12 //最大栈深.最低不得少于2 个,保守值为12.
unsigned char idata task_stack[MAX_TASKS][MAX_TASK_DEP];//任务堆栈.
unsigned char idata task_sp[MA...
分类:
其他好文 时间:
2014-05-18 05:12:43
阅读次数:
339
职业规划怎么写呢?...
分类:
其他好文 时间:
2014-05-18 08:44:00
阅读次数:
385
现在我这样编程,你呢?我有一个观点,所有的发明创造的归根皆出于你想偷懒。你为了偷懒而变得勤快,勤快地去发现和创造你上一个想法的偷懒方法。所以,我们需要的是懒的思想,需要的是为思想而勤奋的行为。...
分类:
其他好文 时间:
2014-05-18 08:43:00
阅读次数:
235
QQ 2059055336
课程讲师:集思博智
课程分类:.net
适合人群:中级
课时数量:23课时
用到技术:Liger UI框架、AJAX、JSON数据格式的序列化与反序列化、角色的交叉权限管理
本课程代码为商业版代码,用户可直接部署运行。
一、系统介绍:
集智建筑工程管理系统是专为建筑类企业打造的一款管理软件。本着“一工程一台帐”的原则...
分类:
其他好文 时间:
2014-05-18 09:14:50
阅读次数:
255
开始以为自己对网络基础的知识还算了解,可是看书和做题后会发现很多细节的东西还是没有掌握,所以总结才能让知道的知识更系统,复习起来也会笔记轻松.
网络基础的概念的一些东西就不贴出来,这里总结一下:ISO/OSI网络体系结构模型和TCP/IP协议模型以及各个层次的常用设备和传输协议。由于这些都是有对应关系的,看书总有种很混乱的感觉,看过之后映像不深刻,所以做题的时候就会有种似曾相识但...
分类:
其他好文 时间:
2014-05-18 09:45:43
阅读次数:
367
==========================================================================================
基础部分...
分类:
其他好文 时间:
2014-05-18 15:49:31
阅读次数:
265
【题目】
Given a digit string, return all possible letter combinations that the number could represent.
A mapping of digit to letters (just like on the telephone buttons) is given below.
Input:Digit string "23"
Output: ["ad", "ae", "af", "bd", "be", "bf",...
分类:
其他好文 时间:
2014-05-18 07:30:12
阅读次数:
340
题目如下:
Til the Cows Come Home
Time Limit: 1000MS Memory Limit: 65536K
Total Submissions: 27726 Accepted: 9353
Description
Bessie is out in the field and wants to get back to the ba...
分类:
其他好文 时间:
2014-05-18 13:50:11
阅读次数:
263
链表是数据结构的基础内容之一,下面就链表操作中的创建链表、打印链表、求取链表长度、判断链表是否为空、查找结点、插入结点、删除结点、逆转链表、连接链表、链表结点排序等进行总结。
1.创建表示结点的类,因为链表操作中需要比较结点,因此结点需要实现comparable接口。
public class Node implements Comparable {
private Object data;...
分类:
其他好文 时间:
2014-05-18 03:04:38
阅读次数:
316
串“abcba”以字母“c”为中心左右对称;串“abba” 是另一种模式的左右对称。这两种情况我们都称这个串是镜像串。特别地,只含有1个字母的串,可以看成是第一种模式的镜像串。
一个串可以含有许多镜像子串。我们的目标是求一个串的最大镜像子串(最长的镜像子串),如果有多个最大镜像子串,对称中心靠左的优先选中。例如:“abcdeefghhgfeiieje444k444lmn”的最大镜像...
分类:
其他好文 时间:
2014-05-18 06:22:24
阅读次数:
169
程序代码:
bool HelloWorld::init()
{
//////////////////////////////
// 1. super init first
if ( !CCLayer::init() )
{
return false;
}
CCSize visibleSize = CCDirector::s...
分类:
其他好文 时间:
2014-05-18 10:10:11
阅读次数:
299
CSDN换头像的方法...
分类:
其他好文 时间:
2014-05-18 07:54:46
阅读次数:
220
for (int k = 0; k
if (((k + 1) % 2) != 0) {
m1 = (MealEntity) list.get(k);
%>
">
src="mealImg/.jpg" width="148"
height="126" border="0" />
:
原价:人民币元
现价:人民币
元
">
...
分类:
其他好文 时间:
2014-05-18 14:07:40
阅读次数:
234
【题目】
Given a linked list, remove the nth node from the end of list and return its head.
For example,
Given linked list: 1->2->3->4->5, and n = 2.
After removing the second node from the end, the linked list becomes 1->2->3->5.
Note:
Given n will ...
分类:
其他好文 时间:
2014-05-18 18:48:03
阅读次数:
269
题目很像是有上下界的,因为限定了每个小孩最少分享的信息。后来听YYD大神的解释是,也许一个人可以多次分享同一个,所以下界可以无视。如果是这样,题目就好办了。
首先源点向所有人连边,如果不是要求的那个人,边容量就设为他的上界,如果是要求的那个人,边容量就设为无穷,因为他的所有信息都不需要别人共享。
人向自己有的信息连边,容量为1
信息连向汇点,容量为1.
#include
#incl...
分类:
其他好文 时间:
2014-05-18 08:19:26
阅读次数:
272
【题目】
Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.
The brackets must close in the correct order, "()" and "()[]{}" are all valid but "(]" and "([)]" are not.
【题意】
判断给定的字符串是否是合法的...
分类:
其他好文 时间:
2014-05-18 10:08:11
阅读次数:
327
B-number
Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 2168 Accepted Submission(s): 1165
Problem Description
A wqb-number, or ...
分类:
其他好文 时间:
2014-05-18 03:32:19
阅读次数:
240