尝试这个。
下面的方法只接受输入并制作一个双向链接列表
node DoublyLinkedList()
{
node *list, *tptr, *nptr;
int n, item;
cout << "Enter numbers of node: ";
cin >> n;
list = NULL;
tptr = NULL;
for (int i = 0; i < n; i++)
{
//Input new node value
cout << "Enter Item " << i + 1 << ": ";
cin >> item;
//Creating new node
nptr = new(node);
nptr->back = NULL;
nptr->data = item;
nptr->next = NULL;
if (list == NULL)
{
list = nptr;
tptr = nptr;
}
else
{
tptr->next = nptr;
nptr->back = tptr;
tptr = nptr;
}
}
cout << endl;
tptr = list;
while (tptr != NULL)
{
cout << tptr->data;
tptr = tptr->next;
if (tptr != NULL)
{
cout << "<=>";
}
}
return *list;
}
使用以下方法插入新节点
void InsertToDoubly()
{
node *list, *tptr, *nptr, *pptr;
int newItem;
list = new(node);
tptr = NULL;
pptr = NULL;
*list = DoublyLinkedList(); // See this method implementation above.
cout << endl;
cout << "Input new node value to insert: ";
cin >> newItem;
nptr = new(node);
nptr->back = NULL;
nptr->data = newItem;
nptr->next = NULL;
tptr = list;
int i = 0;
while (tptr != NULL && tptr->data < newItem)
{
pptr = tptr;
tptr = tptr->next;
i++;
}
if (i == 0)
{
// Inserting at the beggining position.
nptr->next = tptr;
tptr->back = nptr;
list = nptr;
}
else if (tptr == NULL)
{
//Inserting at the last position
pptr->next = nptr;
nptr->back = pptr;
}
else
{
//Inserting into the middle position
pptr->next = nptr;
nptr->back = pptr;
nptr->next = tptr;
tptr->back = nptr;
}
tptr = list;
ShowNode(tptr);
cout << endl;
}
主要方法
int main()
{
InsertToDoubly();
}