码迷,mamicode.com
首页 >  
搜索关键字:returnp    ( 18个结果
io、os(从终端、文件、字符串读取的小例子)
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
C,单链表翻转函数
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
c split 函数 分割字符串 获取指定index的子字符串
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
模拟实现strstr函数
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
jquery.validate验证表单,自己的js提交数据,返回json
$.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
单链表的经典操作,查找链表倒数第k个节点,判断链表是否存在环,求环节点
#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
数据结构 栈 学习笔记1
//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
18条   1 2 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!