/*
* Copyright (c) 2013, 烟台大学计算机学院
* All rights reserved.
* 作 者:马广明
* 完成日期:2014 年 5 月 13 日
* 问题介绍: 班长信息
* 版 本 号:v1.0
*/
#include
#include
using namespace std;
class Stu //声明基类
{
pu...
分类:
其他好文 时间:
2014-05-15 15:17:02
阅读次数:
241
/*
* Copyright (c) 2013, 烟台大学计算机学院
* All rights reserved.
* 作 者: 马广明
* 完成日期:2014 年 5 月 13 日
* 版 本 号:v1.0
* 输入描述:无
* 问题描述:储存职员信息
* 程序输出:职员信息
* 问题分析:继承与派生
* 算法设计:略
*/
#include
#include...
分类:
其他好文 时间:
2014-05-15 14:47:57
阅读次数:
271
本文为senlie原创,转载请保留此地址:http://blog.csdn.net/zhengsenlie
Unique Binary Search Trees II
Total Accepted: 7349 Total
Submissions: 27648
Given n, generate all structurally unique ...
分类:
其他好文 时间:
2014-05-15 07:02:36
阅读次数:
252
在VI下编译运行C++
vi 1.cpp (创建cpp文件名)
i (进入insert模式开始编辑)
输入完成代码后按Esc 键 退出
然后按 Shift +:输入wq (保存并退出)
g++ 1.cpp -o 1 (编译1.cpp文件,编译后的可运行文件名为1)
./1 运行结果
系统调用
fork() 系统每调用一次会产生一个...
分类:
系统相关 时间:
2014-05-15 06:17:03
阅读次数:
415
Implement atoi to convert a string to an integer.
Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below and ask yourself what are the possible input cases.
Notes: It is intended for this problem to be specifi...
分类:
其他好文 时间:
2014-05-15 05:00:50
阅读次数:
229
Problem Description
The new semester begins! Different kinds of student societies are all trying to advertise themselves, by giving flyers to the students for introducing the society. However, due ...
分类:
其他好文 时间:
2014-05-15 03:57:24
阅读次数:
311
node.js API 英文原版
http://nodejs.org/api/all.html
node.js API 中文翻译
http://nodeapi.ucdok.com/#/api/
node.js API 中文翻译下载
http://download.csdn.net/detail/bad19876414641/4608699
javascrip...
分类:
Web程序 时间:
2014-05-14 15:15:10
阅读次数:
329
题目一:
Given a string s, partition s such that every substring of the partition is a palindrome.
Return all possible palindrome partitioning of s.
For example, given s = "aab",
Return
[
...
分类:
其他好文 时间:
2014-05-14 15:10:01
阅读次数:
293
#include
#include
#include
#include
#include
#include
using namespace std;
struct ssss
{
ssss *c[26];
int n,v;
}*s;
void insert(char *str,int v)
{
int i,j,k,l;
ssss *p,*q;
p=...
分类:
其他好文 时间:
2014-05-14 15:06:54
阅读次数:
357
/*
* Copyright (c) 2013, 烟台大学计算机学院
* All rights reserved.
* 作 者:马广明
* 完成日期:2014 年 5 月 13 日
* 问题介绍: 继承的判断
* 版 本 号:v1.0
*/
#include
using namespace std;
class Animal //动物类
{
public:
...
分类:
其他好文 时间:
2014-05-14 15:00:46
阅读次数:
199