BACKGROUNDMany processors include a time stamp count (TSC) counter which is typically implemented as a counter that increments at a fixed rate. Some k...
                            
                            
                                分类:
其他好文   时间:
2014-06-18 22:19:29   
                                阅读次数:
233
                             
                    
                        
                            
                            
                                http://www.cnblogs.com/cubean/archive/2010/04/26/1721035.html以下内容转自:http://bbs.msembed.com/showtopic-1238.aspx嵌入式入门篇:什么是嵌入式系统 http://www.he...
                            
                            
                                分类:
Web程序   时间:
2014-06-18 22:15:38   
                                阅读次数:
347
                             
                    
                        
                            
                            
                                1- 多行注释 ''' ''' 或 """ """'''this is the standard way to include a multiple-line comment in you code'''"""this is the standard way to include a multipl...
                            
                            
                                分类:
编程语言   时间:
2014-06-18 15:46:56   
                                阅读次数:
264
                             
                    
                        
                            
                            
                                Billy investigates the question of applying greedy algorithm to different spheres of life. At the moment he is studying the application of greedy algo...
                            
                            
                                分类:
其他好文   时间:
2014-06-18 15:17:54   
                                阅读次数:
272
                             
                    
                        
                            
                            
                                Description
 The Broken Pedometer 
The Problem
A marathon runner uses a pedometer with which he is having problems. In the pedometer the symbols are represented by seven s...
                            
                            
                                分类:
其他好文   时间:
2014-06-18 12:31:09   
                                阅读次数:
203
                             
                    
                        
                            
                            
                                package com.he.list;
public class Collections {
	public static ArrayList mergeList(ArrayList l1, ArrayList l2) {
		ArrayList l = new ArrayList();
		int l1_length = l1.getLength();
		int l2_length = ...
                            
                            
                                分类:
其他好文   时间:
2014-06-17 22:53:46   
                                阅读次数:
247
                             
                    
                        
                            
                            
                                命令模式(command pattern) 多命令 详解本文地址: http://blog.csdn.net/caroline_wendy参考命令模式: http://blog.csdn.net/caroline_wendy/article/details/313799771. 多命令, 把未使用的命令, 初始化为空对象(NoCommand), 根据参数(slot), 选择输出命令./**
 *...
                            
                            
                                分类:
其他好文   时间:
2014-06-17 22:42:59   
                                阅读次数:
253
                             
                    
                        
                            
                            
                                题目
Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.
If the number of nodes is not a multiple of k then left-out nodes in the end should rem...
                            
                            
                                分类:
其他好文   时间:
2014-06-17 22:15:52   
                                阅读次数:
299
                             
                    
                        
                            
                            
                                继续校赛前的建图任务,当时只写了DFS遍历,今天把BFS也写了一下。
#include 
#include 
#include 
#include 
#include 
const int maxe = 10001;
using namespace std;
struct node{
    int to,w;
    node *next;
}*head[maxe];//he...
                            
                            
                                分类:
其他好文   时间:
2014-06-16 22:25:20   
                                阅读次数:
286
                             
                    
                        
                            
                            
                                Nightmare
时间限制:1000 ms  |  内存限制:65535 KB
难度:4
描述
Ignatius had a nightmare last night. He found himself in a labyrinth with a time bomb on him. The labyrinth has an exit, Ignatius should ...
                            
                            
                                分类:
Web程序   时间:
2014-06-16 18:57:52   
                                阅读次数:
268