C: Method to find a given item x in a linked list. Head is a List *, x's data type is item_type — List *search_list(List *l, item_type x) { if (l == NULL) return(NULL); if (l->item == x) return(l); else return search_list(l->next, x); }
G
1.2K
Google Interview
This flashcard deck made by jwasham contains knowledge about google interview. For more details, please follow https://github.com/jwasham/google-interview-university