Link List Problem,
- by david
OK i have a problem with a Link List program i'm trying to Do,
the link List is working fine.
Here is my code
#include <iostream>
using namespace std;
struct record
{
string word;
struct record * link;
};
typedef struct record node;
node * insert_Node( node * head, node * previous, string key );
node * search( node *head,…