I am trying to implement a hash table
+1
A:
You're trying to add a const stock
value to your item *
hashtable. If you need to add a stock to the table, make an item
struct out of it first, or change the type of the hashtable.
jtbandes
2009-11-15 01:59:30
Create a new `item` struct, and set its symbol, sharePrice, name, priceDate, and items to those of the stock. Or, make the hashtable a `stock*` instead of `item*` or something like that.
jtbandes
2009-11-15 02:07:21
I think i got it.
Corey
2009-11-15 02:16:03
I assume you have a textbook? The information is probably in there. I don't want to write your homework for you. On the topic, are you taking this CS260 at PCC?
jtbandes
2009-11-15 02:19:47
I did, but we had different assignments.
jtbandes
2009-11-15 06:12:00