|
snippets 0.1.0
|
#include <vector>
Go to the source code of this file.
Classes | |
| struct | hsc_snippets::ListNode |
Namespaces | |
| namespace | hsc_snippets |
Functions | |
| static int | hsc_snippets::get_linked_list_length (ListNode *head) |
| static ListNode * | hsc_snippets::make_linked_list (const std::vector< int > &v) |
| static std::vector< int > | hsc_snippets::linked_list_to_vector (ListNode *head) |
| static void | hsc_snippets::linked_list_delete (ListNode *head) |
| static ListNode * | hsc_snippets::linked_list_remove (ListNode *head, size_t begin, size_t end) |
| static ListNode * | hsc_snippets::get_linked_list_ith_node (ListNode *head, size_t i) |