摘要:
/********************************************************给定一个非负整数数组,假定你的初始位置为数组第一个下标。数组中的每个元素代表你在那个位置能够跳跃的最大长度。请确认你是否能够跳跃到数组的最后一个下标。例如:A=[2,3,1,1,4]A 阅读全文
posted @ 2018-09-15 19:36
码猿乌鸡国
阅读(1019)
评论(0)
推荐(0)
摘要:
#include<stdio.h>#include<cstdlib> struct student //定义一个学生结点,结点包括值域和指针域{ int num;//学号 char name[20];//姓名 char address[20];//地址 struct student *next;// 阅读全文
posted @ 2018-09-15 18:49
码猿乌鸡国
阅读(1561)
评论(0)
推荐(0)