#include
#include
#include
#define NULL 0
struct SNode{
int data; //data domain
SNode *next; //pointer domain
};
class Stack{
public:
Stack();
~Stack();
void Push(int e);...
分类:
其他好文 时间:
2015-11-08 19:30:24
阅读次数:
164
花了一天的时间,终于把ubuntu12.04 的linux内核版本从3.13.0升级到3.4.0 升级后,系统更加稳定.具体步骤:# wget http://www.kernel.org/pub/linux/kernel/v3.x/linux-3.4.tar.gz# tar zxvf linux-3.4.tar.gz -C /usr/src# cd /usr/src/linux-3.4# make...
分类:
系统相关 时间:
2015-11-08 19:30:11
阅读次数:
193
--SQL Server 测试环境搭建:Create database Test;
go
USE [Test]
GO
if OBJECT_ID('Tab','U') is not null
drop table Tab
go
CREATE TABLE [dbo].[Tab](
[ID] [int] identity(1,1) NOT NULL,
[name] [sysname] NOT N...
Given a non-negative integer num, repeatedly add all its digits until the result has only one digit.For example:Given num = 38, the process is like: 3 + 8 = 11, 1 + 1 = 2. Since 2 has only one digit, r...
分类:
其他好文 时间:
2015-11-08 19:29:06
阅读次数:
231
本系列文章由@浅墨_毛星云 出品,转载请注明出处。 文章链接: http://blog.csdn.net/poem_qianmo/article/details/49556461 作者:毛星云(浅墨) 微博:http://weibo.com/u/1723155442 本文工程使用的Unity3D版本: 5.2.1 概要:本文讲解了Unity中着色器编译多样化的思路,并对Standar...
分类:
编程语言 时间:
2015-11-08 19:28:51
阅读次数:
3622
11月2号,了解到京东在搞双十一,11月1日图书满200减100,11月2日~11月15日,是搞其它的。 2号当天,去京东看了下,不知道从哪得到的消息,图书活动延长了1天,因此,我在2号当天抢购了价值800多元的书籍,实际支付400多。 需要特别说明的是,我买的书,可以保证95%以上的阅读,只有少数书籍,感觉没有兴趣,延迟读。 下面是清单:我重点学习研究的领域...
分类:
其他好文 时间:
2015-11-08 19:28:09
阅读次数:
160
Untitled Document
分类:
编程语言 时间:
2015-11-08 19:27:04
阅读次数:
153
TreeTime Limit: 20 SecMemory Limit: 256 MB题目连接http://poj.org/problem?id=1741DescriptionGive a tree with n vertices,each edge has a length(positive int...
分类:
其他好文 时间:
2015-11-08 19:28:09
阅读次数:
256
第十章 系统级I/O一、Unix I/O 1.一个unix文件就是一个m个字节的序列 2.unix外壳创建的每个进程开始时都有三个打开的文件:标准输入(0)、标准输出(1)和标准错误(-1)。二、打开个关闭文件 1.int open(char *filename, int flags, mode_t...
分类:
其他好文 时间:
2015-11-08 19:27:47
阅读次数:
131
分类:
其他好文 时间:
2015-11-08 19:27:55
阅读次数:
183
Description There is a row of n coins whose values are some positive integers c?, c?,...,cn, not necessarily distinct. The goal is to pick up the m...
分类:
其他好文 时间:
2015-11-08 19:26:37
阅读次数:
233
>LINK : fatal error LNK1123: 转换到 COFF 期间失败: 文件无效或损坏问题说明:当安装VS2012之后,原来的.NET4.0会被替换为.NET4.5。卸载VS2012时,不会恢复.NET4.0。l当VS2012安装后,VS2010的cvtres.exe就无法使用了。如...
分类:
其他好文 时间:
2015-11-08 19:27:49
阅读次数:
219
import java.io.*;import javax.swing.*;import java.net.*;import java.awt.*;import java.awt.event.*;public class simpleChatClientA { JTextArea incomi...
分类:
其他好文 时间:
2015-11-08 19:27:28
阅读次数:
227
Dalvik模式 如果要解释清楚什么是ART模式,我们就需要从Android系统的应用编译模式说起,我们都知道Android系统是以Linux系统为底层构建的,Android系统是开源(源代码公开)的,Android系统势必会适配到不同硬件配置的设备上,因此谷歌为了降低应用的开发难度在Linux底....
分类:
其他好文 时间:
2015-11-08 19:24:34
阅读次数:
316
1 using UnityEngine; 2 using System.Collections; 3 4 public class MoveTrigger : MonoBehaviour { 5 6 public Transform currentBg; 7 publi...
分类:
其他好文 时间:
2015-11-08 19:25:54
阅读次数:
178
2.实现下述要求的Locate运算的函数问题描述设有一个带表头结点的双向链表L,每个结点有4个数据成员:指向前驱结点的指针prior、指向后继结点的指针next、存放数据的成员data和访问频度freq。所有结点的freq初始时都为0。每当在链表上进行一次Locate(L,x)操作时,令元素值为x的...
分类:
其他好文 时间:
2015-11-08 19:24:51
阅读次数:
243
git clone命令使用分类:项目构建2013-06-26 15:4338660人阅读评论(2)收藏举报GitClonegit clone 命令参数:usage: git clone [options] [--] [] -v, --verbose be more verbo...
分类:
其他好文 时间:
2015-11-08 19:25:57
阅读次数:
251