51
Dev开发社区
首页
文章
问答
工具
搜索
登录
注册
#操作
2019-07-04 列表、字典、集合、元组常用操作及内置方法
今天接着昨天列表知识点一、列表 1.count() 统计该元素在此列表中有几个 l=[1,4,5,6,4,6,7]print(l.count(6))#2 2.clear() 清空列表 []l=[1,4,5,6,4,6,7]print(l.clear())#N...
代码星球
·
2020-04-09
2019-07-04
列表
字典
集合
元组
python flask学习(1)与Git基础操作
今天从简单的flask开始完成Flaskweb开发的学习。今天学习了Git和GitHub项目的提交。Git尝试提交过程中出现了"Couldnotreadfromremoterepository.Pleasemakesureyouhavethecorrectaccessrights."报错,是在GitcloneGitHu...
代码星球
·
2020-04-09
python
flask
学习
Git
基础
Android适配器之DataModifyHelper数据操作类的封装
编写适配器代码时常常被以下几个问题所困扰:1.业务层和适配器中对同一组数据进行维护,难以管理2.在业务层针对数据进行修改后必须通知适配器更新,否则提示ThecontentoftheadapterhaschangedbutListViewdidnotreceiveanotification3.业务层修改数据时充斥大量的非...
代码星球
·
2020-04-09
Android
适配器
DataModifyHelper
数据
操作
linux环境下程序搜索动态库路径和加载相关操作
前言:在linux下编译程序运行时,因为涉及到动态库加载搜索问题,老是会出现加载失败的现象出现,现在整理一下相关知识,供下次遇到问题查看。 linux下程序寻找动态库路径:1.编译生成时,指定的搜索路径。 在makefile中,一般使用”-Wl-rpath”来指明程序运行...
代码星球
·
2020-04-09
linux
环境
程序
搜索
动态
C链表操作
链表创建删除插入查找销毁操作#include<stdio.h>#include<string.h>#include<stdlib.h>typedefstructNode{intdata;structNode*next;}SLIST;SLIST*SList_Create();intSL...
代码星球
·
2020-04-09
链表
操作
04-树7 二叉搜索树的操作集 (30 分)
本题要求实现给定二叉搜索树的5种常用操作。函数接口定义:BinTreeInsert(BinTreeBST,ElementTypeX);BinTreeDelete(BinTreeBST,ElementTypeX);PositionFind(BinTreeBST,ElementTypeX);PositionFindMin(...
代码星球
·
2020-04-09
二叉
搜索
操作
linux线程操作
初始化条件变量intpthread_cond_init(pthread_cond_t*cv,pthread_cond_attr*cattr);函数返回值:返回0表示成功,返回其他表示失败。参数:pthread_cond_attr是用来设置pthread_cond_t的属性,当传入的值是NULL的时候表示使用默认的属性。...
代码星球
·
2020-04-09
linux
线程
操作
环境变量操作函数
getenv获取环境变量值的函数;setenv改变或者添加环境变量函数;unsetenv取消环境变量;(可以在终端上man函数名来获取详细的函数信息)#include<stdio.h>#include<stdlib.h>#include<string.h>intmain(){char...
代码星球
·
2020-04-09
环境
变量
操作
函数
链表基本操作
#include<stdio.h>#include<stdlib.h>structlist{intdata;structlist*next;};//建立链表节点structlist*create_list(){returncalloc(sizeof(structlist),1);}//往链表的第...
代码星球
·
2020-04-08
链表
基本操作
文件操作(结构体写入失败)
/***write.c***/#include<stdio.h>#include<string.h>structstudent{charname[10];intage;};intmain(){structstudentst[10]={0};inti;for(i=0;i<10;i++){pr...
代码星球
·
2020-04-08
文件
操作
结构
写入
失败
文件操作(排序)
文本文件,每行代表一个整数,范围在0~512之间;要求:对文件排序,不使用堆空间,只使用栈空间。 用srand()和rand()函数生成一定量的随机数/***file.c***/#include<stdio.h>#include<string.h>#include<time.h&...
代码星球
·
2020-04-08
文件
操作
排序
文件操作(结构体)
将结构体内容写入到文件中#include<stdio.h>#include<string.h>structstudent{charname[100];intage;};intmain(){structstudentst={"wangqinghe",30};FILE*p=fopen("./c.tx...
代码星球
·
2020-04-08
文件
操作
结构
文件操作(stat函数)
stat函数可以获取文件信息/***stat.c***/#include<stdio.h>#include<string.h>#include<sys/stat.h>#include<stdlib.h>intmain(){structstatst={0};//定义一个结构...
代码星球
·
2020-04-08
文件
操作
stat
函数
文件操作(stat)
/***stat.c***/#include<stdio.h>#include<string.h>#include<sys/stat.h>#include<stdlib.h>intmain(){structstatst={0};//定义一个结构体,名字叫ststat("....
代码星球
·
2020-04-08
文件
操作
stat
文件操作(二进制文件加密解密)
加密#include<stdio.h>#include<string.h>voidcode(char*p,size_tn){size_ti;for(i=0;i<n;i++){p[i]+=3;}}intmain(){FILE*p1=fopen("./a.txt","r");FILE*p2=f...
代码星球
·
2020-04-08
文件
操作
二进制
加密解密
首页
上一页
...
130
131
132
133
134
...
下一页
尾页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他