摘要: #include#include#includetypedef struct _stack{ int* arr; int top, size;}stack;stack createStack(int size){ stack st; st.arr = (int*)malloc(size*sizeof... 阅读全文
posted @ 2015-08-02 18:56 湛雷冲 阅读(100) 评论(0) 推荐(0)
摘要: #include#includetypedef struct _ListNode{ int m_nKey; struct _ListNode *m_pNext;}ListNode;//插入节点void InsertNode(ListNode **plistHead, int val){ ListNo... 阅读全文
posted @ 2015-08-02 13:36 湛雷冲 阅读(207) 评论(0) 推荐(0)