这道题要删除倒数第n个结点,因此要先找到倒数第n+1个结点,然后进行删除。由于可能删除的是链表的第一个结点,因此需要在链表开始插入一个空的头结点。 写题之前要提前想好几种特殊情况: 1. head指针为空,或者链表只有一个结点时,均返回NULL 2. 要删除的结点是头结点或者尾结点 ...
分类:
其他好文 时间:
2016-05-18 10:37:00
阅读次数:
187
*1)创建表 create table 表名( 字段名 类型, .... ); //以现有表复制一个新表 create table j012 as select id,name,salary from j010 where 1<>1; 2)删除表 drop table 表名;//删除,放入回收站 d ...
分类:
其他好文 时间:
2016-05-16 12:57:39
阅读次数:
159
3.WHERE中使用is null和is not null //查询工资是null空值的人 select * from person where salary is null; //查询工资不为null的人 select * from person where salary is not null; ...
分类:
其他好文 时间:
2016-05-16 12:41:26
阅读次数:
125
1)NULL值写入的操作 create table j010( id number(7), name varchar2(20), salary number(7,2)); //插入时指定null insert into j010(id,name,salary) values(101,'scott', ...
分类:
其他好文 时间:
2016-05-16 12:35:36
阅读次数:
150
//查询工资大于等于2000的人 select * from person salary >= 2000; //查询名字等于scott的人 select * from person name='scott' //查询不属于10这个部门的人 select * from person deptno != ...
分类:
其他好文 时间:
2016-05-16 12:31:04
阅读次数:
125
Given a linked list, remove the nth node from the end of list and return its head. For example, Note:Given n will always be valid.Try to do this in on ...
分类:
编程语言 时间:
2016-05-13 10:20:53
阅读次数:
172
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...
分类:
其他好文 时间:
2016-05-12 21:32:15
阅读次数:
140
问题及代码:
【项目-人数不定的工资类】
设计一个工资类(Salary),其中的数据成员包括职工人数(number,人数不定)和number个职工的工资salary,要求输入职工工资并逐个输出。
提示:用固定大小的数组存储number个职工的工资,可能造成空间的浪费,也可能会由于空间不够而不能处理职工人数过多的应用。将salary声明为指针类型的成员,通过动态分配空间,分配正好大小的空间存储...
分类:
其他好文 时间:
2016-05-12 21:07:13
阅读次数:
124
问题及代码:
/*copyright(c)2016.烟台大学计算机学院
* All rights reserved,
* 文件名称:text.Cpp
* 作者:李一波
* 完成日期:2016年5月9日
* 版本号:vc++6.0
*
* 问题描述: 设计一个工资类(Salary),其中的数据成员包括职工人数(number,人数不定)和number个职工的工资(Salary)
* ...
分类:
其他好文 时间:
2016-05-12 20:55:08
阅读次数:
154
/*All rights reserved.
*文件名称:main.cpp
*作 者:张珩瑞
*完成日期:2016年4月23日
*版本号:v1.0
*
*问题描述:员工薪水
*输入描述:无
*输出描述:无
*/
#include
using namespace std;
class Salary
{
public:
Salary(int n); //n为职工人数,...
分类:
其他好文 时间:
2016-05-12 20:33:03
阅读次数:
165