摘要: // shuangshuang.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include#include#include#include//#include"myheader.h"using namespace std;typedef struct node{ int data; node* next;}node;bool init(node*& head,int darry[],int len)//初始化一个链表,链表载入数组darry的数据,len为长度{ if(darry == NULL) retu 阅读全文
posted @ 2014-03-28 11:13 joey周琦 阅读(461) 评论(0) 推荐(0) 编辑