这是一些对顺序表的操作,有的带地址符有的不带,怎么来判断?
InitList(&L)
DestroyList(&L)
ClearList(&L)
ListEmpty(L)
ListLength(L)
GetElem(L,i,&e)
LocateElem(L,e,compare())
PriorElem(L,cur_e,&pre_e)
NextElem(L,cur_e,&next_e)
ListInsert(&L,i,e)
ListDelete(&L,i,&e)
......................
阅读全部
|
jjqhxl
贴于 2012年11月7日 13:14
hide
bbsi
新手学c++,写了个代码。自己感觉没有错。可是用vc6.0就是运行不出来。错误一堆。。求大神指导哪里错了。。。
#include <iostream>
#include <string>
using namespace std;
string str[12]={"January 1, ","February 1","March 1, ","April 1, ","May 1, ",
"June 1, ","July 1, ","August 1, ","September 1, ","October 1, ",
"November 1, ","December 1, "};
int day[12]={31,28,31,30,31,30,31,31,30,31,30,31};
string week[7]={"Sunday","Monday","Tuesday","Wednesday",
......................
阅读全部
|
wuraincai
贴于 2012年10月29日 22:41
hide
bbsi
#include<iostream>
#include<iomanip>
using namespace std;
void sqo(int &a, int &b, int &c);
int main(void){
int a, b, c;
cout<<"请输入三个整数"<<endl;
B:
cout<<"a=";cin>>a;
cout<<"b=";cin>>b;
cout<<"c=";cin>>c;
......................
阅读全部
|
ithaibo
贴于 2012年10月24日 17:19
hide
bbsi
#include <iostream>
#include <string>
#include <iomanip>
using namespace std;
struct PCBNode
{
string name;
float runTime; //总的需要运行时间
float remainTime; //剩下需要运行时间
float arriveTime; //进入就绪队列时间
float startTime; //开始运行时间
......................
阅读全部
|
张起灵
贴于 2012年10月20日 17:18
hide
bbsi
# include"iostream.h"
#include"stdlib.h"
#define STACKSIZE 100
typedef int ElemType;
typedef struct {ElemType data [ STACKSIZE ] ;
int top; } sqstack;
/*补充InitStack初始化栈算法*/
void Initstack(sqstack &S)
{
S.top=0;
......................
阅读全部
|
a714452
贴于 2012年10月13日 10:10
hide
bbsi
#include<iostream>
using namespace std;
class Shengxb{
public:
Shengxb(int size=0);
~Shengxb();
int &operator[](int i);
void pull();
void connect(Shengxb &BB);
private:
int size;
int *shengxb;
......................
阅读全部
|
蜗牛KTZ
贴于 2012年9月23日 10:17
hide
bbsi
#include<cstdlib>
#include<iostream>
#include<cstdio>
#include<cmath>
#include<set>
#include<vector>
#include<cstring>
#include <algorithm>
#define LL long long
#define inf 0x7fffffff
#define E 1e-9
#define M 310
......................
阅读全部
|
sunbaofeng
贴于 2012年9月22日 18:06
hide
bbsi
#include<cstdlib>
#include<iostream>
#include<cstdio>
#include<cmath>
#include<set>
#include<vector>
#include<cstring>
#include <algorithm>
#define LL long long
#define inf 0x7fffffff
#define E 1e-9
#define M 310
......................
阅读全部
|
sunbaofeng
贴于 2012年9月22日 18:06
hide
bbsi
#include<iostream>
using namespace std;
#define NULL 0
struct student
{
long num;
float score;
student *next;
};
int n;
int main()
{
......................
阅读全部
|
罗马龙骑士
贴于 2012年9月20日 22:31
hide
bbsi
#include<iostream>
//#include<iomanip>
//#include<cmath>
using namespace std;
template <class T>
T max(T a[],int n)
{
T max=a[0];
for (int i=0;i<n;i++)
if (a[i]>max)
max=a[i];
return max;
......................
阅读全部
|
jude1990
贴于 2012年8月17日 14:59
hide
bbsi