博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
2013=字符串
阅读量:6268 次
发布时间:2019-06-22

本文共 729 字,大约阅读时间需要 2 分钟。

#include 
#include
#define ERROR -1#define OK 1typedef struct{ char *ch; int length;} heapstring;typedef struct{ char item[100][80]; int last;}wordlisttype;typedef int status;status init(heapstring &t){ t.ch=(char *)malloc(sizeof(char)); return 1;}status strassign(heapstring &t,char *chars){ int i,j; char *c; init(t); if (t.ch) free(t.ch); for (i=0,c=chars; *c; ++i,++c) if (!i) { t.ch=NULL; t.length =0; } else if (!(t.ch=(char *)malloc(i*sizeof(char)))) return ERROR; else { for (j=0;j

  

转载于:https://www.cnblogs.com/wc1903036673/p/3407433.html

你可能感兴趣的文章
unbtu使用笔记
查看>>
MaxCompute 学习计划(一)
查看>>
OEA 中 WPF 树型表格虚拟化设计方案
查看>>
Android程序开发初级教程(一) 开始 Hello Android
查看>>
使用Gradle打RPM包
查看>>
“我意识到”的意义
查看>>
淘宝天猫上新辅助工具-新品填表
查看>>
再学 GDI+[43]: 文本输出 - 获取已安装的字体列表
查看>>
nginx反向代理
查看>>
操作系统真实的虚拟内存是什么样的(一)
查看>>
hadoop、hbase、zookeeper集群搭建
查看>>
python中一切皆对象------类的基础(五)
查看>>
modprobe
查看>>
android中用ExpandableListView实现三级扩展列表
查看>>
%Error opening tftp://255.255.255.255/cisconet.cfg
查看>>
java读取excel、txt 文件内容,传到、显示到另一个页面的文本框里面。
查看>>
《从零开始学Swift》学习笔记(Day 51)——扩展构造函数
查看>>
python多线程队列安全
查看>>
[汇编语言学习笔记][第四章第一个程序的编写]
查看>>
android 打开各种文件(setDataAndType)转:
查看>>