左边啊

不努力,哪有光明

2017年3月25日

c++ 求集合的交并补

摘要: #include #include #include #include #include #include //线性表的单链表存储结构 typedef struct LNode{ char data; LNode *next; }LNode,*LinkList; void CreateList_L(LinkList &L,int n); void Bing(LinkList La,... 阅读全文

posted @ 2017-03-25 20:10 左佐佐 阅读(672) 评论(0) 推荐(0) 编辑

用递归机制逆序输出一个字符串

摘要: 1 package fa.ct; 2 3 public class Nixu { 4 5 static String input="abcdefg"; 6 public static String ltof(String input){ 7 if(input.isEmpty()){ 8 return input; 9... 阅读全文

posted @ 2017-03-25 18:23 左佐佐 阅读(222) 评论(1) 推荐(0) 编辑

导航