摘要:
index 这是很简单的一个插入数据的方法,每条数据调用一个index方法,代码如下 from datetime import d... 阅读全文
摘要:
#includetypedef struct Student //声明结构体类型 struct Student ... 阅读全文
摘要:
链表学习(一)静态链表的构造 #includetypedef struct Student //声明结构体类型 struct Student { int num; float ... 阅读全文
摘要:
链表学习(一)静态链表的构造 #includetypedef struct Student //声明结构体类型 struct Student { int num; float ... 阅读全文
摘要:
#includeint main() { int *p1,*p2,*p,a,b; printf("please ent... 阅读全文
摘要:
#includeint main() { int *p1,*p2,*p,a,b; printf("please ent... 阅读全文
摘要:
C 语言指针理解 #includeint main() { int *p1,*p2,*p,a,b; printf("please enter two integer numbers"); scanf("%d,%d",... 阅读全文
摘要:
C 语言指针理解 #includeint main() { int *p1,*p2,*p,a,b; printf("please enter two integer numbers"); scanf("%d,%d",... 阅读全文
摘要:
redis 安装完成后,以下代码可以直接运行 #!/usr/bin/env python3# -*- coding: utf-8 -... 阅读全文
摘要:
Haskell 斐波那契 数列 递归实现 haskell let fibonacci n = if n fibonacci 206765 python def factorial(n): if n==1 or ... 阅读全文