![]() Programming Interviews Exposed: Secrets to Landing Your Next Job, 2nd Edition
ISBN: 978-0-470-12167-2
Paperback
264 pages
April 2007
US $29.99
This price is valid for United States. Change location to view local pricing and availability.
View Previous Edition of This Title
Other Available Formats: Adobe E-Book
|
Instructors may request an evaluation copy for this title.
|
Do you think you've discovered an error in this book? Please check the list of errata below to see if we've already addressed the error. If not, please submit the error via our Errata Form. We will attempt to verify your error; if you're right, we will post a correction below.
| Chapter | Page | Details | Date | Print Run |
|---|---|---|---|---|
| 28 | Line Missing in Code When adding a new ListElement/IntElement to the front of the linkedlist, the new element shoudl also update its "next" to point to the previous head. for example: bool insertInFront (IntElement **head, int data) { IntElement *newElem = new IntElement; if(!newElem) return false; newElem->data = data; newElem->next = *head; // THIS LINE IS MISSING *head = newElem; //Correctly updates head return true; } |
06/07/07 |

