#includechar *reverse(char *str);char *link(char *str1,char *str2);int main(){char str[30],str1[30],*str2;printf("请输入一个字符串:\n");gets(str);str2=reverse...
分类:
其他好文 时间:
2014-12-14 18:29:18
阅读次数:
136
Catalogue:string-类型转换
Question
Evaluate the value of an arithmetic expression in Reverse Polish Notation.
Valid operators are +, -, *, /. Each operand may be an integer or another expression.
Some...
分类:
其他好文 时间:
2014-12-14 13:20:32
阅读次数:
130
Reverse IntegerReverse digits of an integer.Example1: x = 123, return 321Example2: x = -123, return -321click to show spoilers.SOLUTION 1:注意越界后返回0.先用l...
分类:
其他好文 时间:
2014-12-14 09:24:32
阅读次数:
120
链表的倒转,
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
/**
* Definition for singly-link...
分类:
其他好文 时间:
2014-12-14 00:46:14
阅读次数:
193
题目:
Given a constant K and a singly linked list L, you are supposed to reverse the links of every K elements on L. For example, given L being 1→2→3→4→5→6, if K = 3, then you must output 3→2...
分类:
其他好文 时间:
2014-12-13 21:53:24
阅读次数:
326
将非Unicode编码字符转化为Unicode编码的字符,即国际化。
语法:native2ascii [options] [inputfile [outputfile]]
描述:如果outputfile没有指定,标准输出将用于结果输出;如果inputfile没有指定,标准输入设备将用于输入。
参数
-reverse
使用该参数将Unicode编码字符转换为本地编码...
分类:
编程语言 时间:
2014-12-13 17:56:12
阅读次数:
414
HappyLeetcode1:Reverse Words in a String题目描述:题目思考:建立一个数组,每个数组存储一个单词。将该数组倒序输出,每输出一个单词后,紧跟着输出一个空格。题目解题代码Pythonclass Solution: # @param s, a string # @re...
分类:
移动开发 时间:
2014-12-13 17:49:10
阅读次数:
219
标题:Reverse Integer正确率:34.8%难度简单Reverse digits of an integer.Example1:x = 123, return 321Example2:x = -123, return -321Have you thought about this?Here...
分类:
其他好文 时间:
2014-12-12 23:33:08
阅读次数:
214
题目
Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.
If the number of nodes is not a multiple of k then left-out nodes in the end should remain ...
分类:
其他好文 时间:
2014-12-12 19:06:05
阅读次数:
133
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a link...
分类:
其他好文 时间:
2014-12-12 15:01:52
阅读次数:
137