会员
周边
新闻
博问
闪存
赞助商
YouClaw
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
书亦非书
博客园
首页
新随笔
联系
订阅
管理
2021年5月11日
链表逆序——迭代法、递归法
摘要: #include <stdio.h> #include <stdlib.h> typedef struct List { int data; struct List *next; } * List, node; List CreatList(List head,int e); void Print(
阅读全文
posted @ 2021-05-11 16:43 书亦非书
阅读(100)
评论(0)
推荐(0)
2021年5月2日
数据结构——线性表
摘要: #include<stdio.h> #include<stdlib.h> typedef struct LinkList { int number; struct LinkList *next; }*LinkList,node; LinkList CreatList(LinkList head,in
阅读全文
posted @ 2021-05-02 22:42 书亦非书
阅读(62)
评论(0)
推荐(0)
2021年2月21日
python学习笔记——资料来源于廖雪峰老师
摘要: # usr/bin/env python3# -*- coding: utf-8 -*- # -*- 2021/2/8 -*- # 生成器 # 杨辉三角 def triangles(): s = [1] i = 2 while True: yield s # 相当于表示存储的值,但是是计算出来的 t
阅读全文
posted @ 2021-02-21 21:09 书亦非书
阅读(49)
评论(0)
推荐(0)
公告