//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:24:06
阅读次数:
130
#include<stdio.h>
#include<stdlib.h>
char*substr(constchar*s,intn1,intn2)
{
char*p=(char*)malloc(n2-n1+2);
inti,j=0;
for(i=n1;i<=n2;i++,j++)
p[j]=s[i];
p[j]=‘\0‘;
returnp;
}
voidmain(void)
{
chars[80],*sub;
intn1,n2;
printf("请输入..
分类:
其他好文 时间:
2015-04-26 01:47:06
阅读次数:
146
https://oj.leetcode.com/problems/permutations-ii/http://blog.csdn.net/linhuanmars/article/details/21570835publicclassSolution{
publicList<List<Integer>>permuteUnique(int[]num)
{
//SolutionA:
//returnpermuteUnique_Swap(num);
//SolutionB:
returnp..
分类:
其他好文 时间:
2015-01-03 13:21:53
阅读次数:
143
1. block基础 block声明有点像c语言的函数指针C代码intfunc(int);int(*pfunc)(int);intfunc(intp){printf("%d",p);returnp;}其中func是函数, pfunc是函数指针函数指针赋值 pfunc = &func;函数指针使用 (...
分类:
其他好文 时间:
2014-12-07 11:13:09
阅读次数:
212
voidGetMemory1(char*p){p=(char*)malloc(100);}voidTest1(void){char*str=NULL;GetMemory(str);//把str传进去,str是一个指针strcpy(str,"helloworld");printf(str);}char*GetMemory2(void){charp[]="helloworld";returnp;}voidTest2(void){char*str=NULL;str=GetMemory2();pr..
分类:
其他好文 时间:
2014-09-29 04:06:27
阅读次数:
268
#!/usr/bin/envpython
fromsubprocessimportPopen,PIPE
importurllib,urllib2
importshlex,re
defgetIfconfig():
p=Popen([‘ifconfig‘],stdout=PIPE)
returnp.stdout.read().split(‘\n\n‘)
defparseIfconfig(data):
macaddr=data.split(‘\n‘)[0].split()[-1]
ipaddr=data.spl..
分类:
编程语言 时间:
2014-09-27 19:43:20
阅读次数:
320
#!/usr/bin/envpython
importshlex
fromsubprocessimportPopen,PIPE
defget_ps():
cmd=‘psax-opid,ppid,cmd‘
p=Popen(shlex.split(cmd),stdout=PIPE)
returnp.stdout.readlines()[1:]
defsplit(s):
s=s.split()
returns[0],s[1],‘‘.join(s[2:])
defparser_ps(data):
p..
分类:
编程语言 时间:
2014-09-27 18:03:10
阅读次数:
339
实现带参数、返回值类型声明的js函数:类型定义:window.Str=Type.Str=Type.define('STRING',Type.isStr);varPer=Type.define('PERSON',function(p){returnp&&p.type==='person'&&p.nam...
分类:
编程语言 时间:
2014-07-28 23:50:44
阅读次数:
413