hello,
I need to create a chain of objects, with links in common.
In C++, I made a class like.
//Linked List of 10 nodes.
class link{
link *left;
int data;
link * right;
public:
CreateLink(link *a,link *b){
left = a;
right = b;
}
};
int main(){
link obj[10];
obj[0].CreateLink(NULL,&obj[1]);
for(i=1;i<9;i++){
obj[i].CreateLink(obj[i-1],obj[i+1]);
}
obj[9].CreateLink(&obj[8],NULL);
}
How would I achieve the same task in Java without using LinkedList or List type or classes??
I want to make a variable(int,char etc) that is common to two adjacent objects and not to all the objects of that class!
Please help.
Regards,
Vinay