首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴zhao72349947的代码贴全部
/*
编写一个存储艺术作品的程序。艺术作品分为三类:Painting、Music和Chamber,Chamber是Music中的一类。
要求如下所述。每件作品都要标明著者、作品标题、作品诞生年份及其所属分类。
Painting类要求显示画的宽和高等尺寸信息。
Music类要求显示能够代表其内容的关键信息
Chamber类要求显示其中包括的演奏人员的数目
*/
#include<iostream>
using namespace std;

class Art
{
......................
阅读全部 | 2014年5月22日 20:24
#include<stdio.h>
#include<string.h> 
#include <malloc.h>
#include<stdlib.h>
struct node
{
       int num;
       char name[15];
       node *next;
};
node *create()
{
......................
阅读全部 | 2013年6月13日 16:36
#include <stdio.h>
#include <malloc.h>

typedef struct Node
{
  int data;
  struct Node *prior, *next;
}node;

node *Init()
{
    node *head;
......................
阅读全部 | 2013年6月13日 16:36
#include<stdio.h>
#define max 100000

struct sqlist
{
int data[max+1];
int lenth;
};

int ssort(sqlist *l)
{
  int i,j,k,min;
......................
阅读全部 | 2013年6月13日 16:35
#include<stdio.h>
#include<string.h>
#define max 100
struct sqlist
{
 int data[max+1];
 int lenth;       
};
int csort(sqlist *l)
{
    int i,j;
    for(i=2;i<=l->lenth;i++)
......................
阅读全部 | 2013年6月13日 16:34
#include<stdio.h>
#define max 100000

struct sqlist
{
int data[max+1];
int lenth;
};

void shellinsert(sqlist *l,int d)
{
int i,j;
......................
阅读全部 | 2013年6月13日 16:33
#include<stdio.h>
#define max 100000

struct sqlist
{
int data[max+1];
int lenth;
};

void shellinsert(sqlist *l)
{
int i,j,temp;
......................
阅读全部 | 2013年6月13日 16:33
#include<stdio.h>
#define max 100000

struct sqlist
{
int data[max+1];
int lenth;
};

int patition(sqlist *l,int low,int high)
{
    l->data[0]=l->data[low];
......................
阅读全部 | 2013年6月13日 16:32
#include<stdio.h>
#include<malloc.h>
#include<string.h>

struct node
{
char data;
int c;
node *lc,*rc,*pre;//左孩子为子女,右孩子为兄弟姐妹,pre父亲 
};

struct sqelist 
......................
阅读全部 | 2013年6月13日 16:30
#include<stdio.h>
#include<string.h>
#define MAXSIZE 100

struct seqstack1//数据栈 
{
float data[MAXSIZE];//数组 
int top;//栈顶 
};
int init_seqstack1(seqstack1 * s1)//初始化栈 
{
s1->top=0;
......................
阅读全部 | 2013年6月13日 16:28
1 2 下一页
zhao72349947