摘要: #include <stdio.h>typedef struct node{char data[0];struct node *next;}Node;Node *test_and_find(Node *);Node *test_and_find(Node *head){Node *fast = head;Node *slow = head;while(fast && f... 阅读全文
posted @ 2010-07-05 15:34 arshily 阅读(206) 评论(0) 推荐(0)
摘要: vs2008 winform环境using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Linq;using System.Text;using System.Windows.Forms;using Sy... 阅读全文
posted @ 2010-07-01 15:23 arshily 阅读(470) 评论(0) 推荐(1)