- 博客(20)
- 收藏
- 关注
原创 windows下git 如何避免每次push都要输入用户名和密码
本地环境:git bash windows版, 输入git version后,有如下提示: git version 1.7.9.msysgit.0打开git bash控制终端后: cd
2017-03-29 10:48:38 11448 3
原创 find the longest numeric string in the given input strings
题目描述:对于一个输入的字符串,找出全是数字的最长的字符串
2017-03-06 15:28:36 376
原创 reverse or rotate
The input is a string str of digits. Cut the string into chunks of size sz (ignore the last chunk if its size is less than sz). If a chunk represents an integer such as the sum of the cubes of its d
2016-11-17 19:43:24 899
原创 查找子串,并且按字典顺序排序
没事刷刷题。 Given two arrays of strings a1 and a2 return a sorted array r in lexicographical order of the strings of a1 which are substrings of strings of a2. Example 1: a1 = [“arp”, “live”, “strong
2016-11-17 18:50:54 746
原创 dropWhile
dropWhile Yet another staple for the functional programmer. You have a sequence of values and some predicate for those values. You want to remove the longest prefix of elements such that the predicat
2016-11-17 18:01:17 432
转载 关于js中数据类型的探讨,转载http://www.cnblogs.com/sharpxiajun/p/4133462.html
今天看到在看有关js中基本数据类型和引用类型的知识点,看到一篇博文,感觉作者分析的很深入,写得很明白,故此转载一下。转载出处:http://www.cnblogs.com/sharpxiajun/p/4133462.html1) 引子 前不久我建立的技术群里一位MM问了一个这样的问题,她贴出的代码如下所示:var a = 1;function heh
2016-11-06 23:19:51 896
原创 stm32 KEIL软件设置程序烧写起始地址
STM32 KEIL软件设置程序烧写起始地址选择STM32系列的mcu,这儿以cortex-M3为例,我们在线调试时,一般会设置程序烧写起始地址和大小。这个大小一般是0x08000000,也就是内部flash的映射地址。不过有些产品是从0x08020000开始的,这是为什么呢?是因为在0x08000000-0x08020000这段空间放的是引导程序,也就是引导程序是从0x08000000开始存
2016-11-03 14:56:30 26286
原创 结构体对齐问题
结构体的成员变量对齐问题:在嵌入式开发中,多多少少都要遇到这个结构体对齐的问题,特别是某些平台,一不对齐就crash。 还有就是和pc端软件共同协作时,更要统一结构体变量的对齐,否则就牛头不对马嘴了。今天,就来总结下结构体到底是怎么对齐的。 这个对齐问题可以总结为两个问题点: 1. 成员变量的存放起始地址,也就是相对于结构体的偏移量的确定。 2. 整个结构体变量的大小 在C/C++中,
2016-10-27 14:03:38 530
原创 常指针和指向常量的指针 const int *p;int * const p ;const int * const p
来聊聊一个有点绕的问题:常指针;指向常量的指针;指向常量的常指针先给声明:const int *p -----> 指向常量的指针(指针指向的数据不能改变,但是指针可以指向其他数据)int * const p -----> 常指针(指针不可变,即指针不能指向其他数据,指针目前指向的数据可被改变)const int * const p -----> 指向常量的常
2016-10-21 10:13:09 725
原创 向升序排列的单链表中插入一个值,要求插入后仍为升序链表
今天看书时看到单链表的插入操作,觉得这种思想不错,故mark一下。介绍:已有一个链表,链表是按值的升序链接而成的。现要插入一个值,也就是新增一个节点,而且要求插入后链表仍为升序排列的。直接上代码:typedef struct _Node{int value;struct _Node *link;}Node;int list_insert(Node** linkp
2016-10-18 16:08:35 5497
原创 C语言 atoi 函数的实现
首先说下atoi(const char *)这个函数的主要功能:该函数是用于将含有数字字符的字符串转为整数(可正可负)/********************this func is completation for the atoi(const char *);@parameter : const char *@return output: numby
2016-09-28 23:37:59 680
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人