Search found 1 match

by redbox
Tue Dec 27, 2005 9:52 am
Forum: Volume 7 (700-799)
Topic: 755 - 487--3279
Replies: 115
Views: 47785

755 [487-3279] help me

#include<stdio.h>
#include<stdlib.h>
#include<math.h>
struct Map
{
int key;
int value;
}map[100];

struct List
{
int size;
int left;
struct Map *p;
};

struct List list={0,100,map};
///////
int insert(struct List *p,int n)
{ int j,flag=0;
///////////////////////
int low,mid,high;
if ...

Go to advanced search