packagemainimport("io""strings""fmt""os")funcReadFrom(readerio.Reader,numint)([]byte,error){p:=make([]byte,num)n,err:=reader.Read(p)ifn>0{returnp[:n],nil}returnp,err}//从字符串读funcsampleReadFromString
分类:
其他好文 时间:
2019-03-11 18:56:08
阅读次数:
166
structST_StackNode{intnum;datatypedata;structST_StackNode*pNext;//指针域};typedefstructST_StackNodeStackNode;StackNodereverse(StackNodephead){if(phead==NULL){returnNULL;}if(phead->pNext==NULL){returnp
分类:
其他好文 时间:
2018-04-21 00:23:25
阅读次数:
123
char*get_sub_split(char*path,constchar*delim,intindex){//staticconstchar*delim=".";inti=0;char*p=strtok(path,delim);//printf("i=%d,%s\\n",i,p);if(i==index){returnp;}i++;while((p=strtok(NULL,delim))){//printf("i=%d,%s\\n",i,p);if(i==index){returnp;}i++;}retu..
分类:
其他好文 时间:
2017-07-13 16:03:02
阅读次数:
122
publicclassDemo7{ publicstaticvoidmain(String[]args) { try{ intc=sum(3,4); //thrownewException(intc=sum(3,4);System.out.println(); System.out.println(c); }catch(Exceptione){ System.out.println(e); } } publicstaticintsum(inta,intb)throwsException{ re..
分类:
其他好文 时间:
2016-05-23 19:20:48
阅读次数:
125
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<malloc.h>
intfun1(char*p)
{
intlen=0;
while(*p!=0){len++;p++;}
returnlen;
}
intfun2(constchar*s)
{constchar*p=s;
while(*p++);
returnp-s-1;
}
/*************
p
abcde
s---..
分类:
其他好文 时间:
2016-03-10 01:47:00
阅读次数:
157
char*my_strstr(char*str1,char*str2){assert(str1);assert(str2);char*p=str1;char*pstr1=p;char*pstr2=NULL;while(*pstr1){pstr1=p;pstr2=str2;while(*pstr1&&*pstr2&&*pstr1==*pstr2){pstr1++;pstr2++;}if(*pstr2==‘\0‘){returnp;}p++;}returnNULL;}
分类:
其他好文 时间:
2015-11-10 01:52:03
阅读次数:
186
$.metadata.setType("attr","vld");$.validator.addMethod("username",function(value){ varp=/^[0-9a-zA-Z\u4e00-\u9fa5\.\-@_]+$/; returnp.exec(value)?true:false;},"Pleaseenteronlyletters,digits,chineseand‘_‘,‘-‘,‘@‘");$.metadata.setType("attr","vld");$.validator..
分类:
Web程序 时间:
2015-10-13 19:29:18
阅读次数:
294
#include<stdio.h>#include<stdlib.h>typedefstructdate_list{intdata;structdate_list*next;}mylist;mylist*creatlist(intx,mylist*p)//用一个元素创建链表{if(NULL==p)//链表创建必须判空{p=malloc(sizeof(mylist));p->data=x;p->next=NULL;}returnp;}myli..
分类:
其他好文 时间:
2015-05-31 18:36:33
阅读次数:
141
//SeqStack.h
typedefstructstack
{
DATAdata[SIZE+1];//数据元素
inttop;//栈顶
}SeqStack;
SeqStack*SeqStackInit()
{
SeqStack*p;
if(p=(SeqStack*)(malloc)(sizeof(SeqStack)))//申请栈内存
{
p->top=0;//设置栈顶为零
returnp;//返回指向栈的指针
}
returnN..
分类:
其他好文 时间:
2015-04-30 01:12:54
阅读次数:
205
//SeqStack.h
typedefstructstack
{
DATAdata[SIZE+1];//数据元素
inttop;//栈顶
}SeqStack;
SeqStack*SeqStackInit()
{
SeqStack*p;
if(p=(SeqStack*)(malloc)(sizeof(SeqStack)))//申请栈内存
{
p->top=0;//设置栈顶为零
returnp;//返回指向栈的指针
}
returnN..
分类:
其他好文 时间:
2015-04-29 07:23:27
阅读次数:
114