码迷,mamicode.com
首页 >  
搜索关键字:insert all    ( 36718个结果
班长信息2
/* * 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
Leetcode 树 Unique Binary Search TreesII
本文为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
Linux上机笔记(2)
在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
[LeetCode]String to Integer (atoi)
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
HDU4768:Flyer(二分)
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相关资料汇总
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
leetcode题目:Palindrome Partitioning 和Palindrome Partitioning II
题目一: 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
HDU--2846--Repository--字典树
#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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!