/* Rewrite the temperature conversion program of Section 1.2 to use a function for conversion. */ #include <stdio.h> float celsius(float fahr); /* pri ...
分类:
其他好文 时间:
2017-06-25 12:47:20
阅读次数:
141
Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right to left for the next level and ...
分类:
其他好文 时间:
2017-06-25 11:57:45
阅读次数:
228
Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right to left for the next level and ...
分类:
其他好文 时间:
2017-06-18 23:40:34
阅读次数:
295
Energy Conversion Problem Description 魔法师百小度也有遇到难题的时候—— 如今,百小度正在一个古老的石门面前,石门上有一段古老的魔法文字,读懂这样的魔法文字须要耗费大量的能量和大量的脑力。 过了许久。百小度最终读懂魔法文字的含义:石门里面有一个石盘。魔法师须要通 ...
分类:
其他好文 时间:
2017-06-18 18:10:05
阅读次数:
181
题目: Given a binary tree, return the zigzag level order traversal of its nodes' values. (ie, from left to right, then right to left for the next level ...
分类:
编程语言 时间:
2017-06-15 14:17:51
阅读次数:
188
ZigZag Conversion : The string “PAYPALISHIRING” is written in a zigzag pattern on a given number of rows like this: (you may want to display this patt ...
分类:
其他好文 时间:
2017-06-13 14:17:07
阅读次数:
155
https://leetcode.com/problems/zigzag-conversion/ 水题纯考细心 题目:依照Z字形来把一个字符串写成矩阵,然后逐行输出矩阵。 O(n)能够处理掉 记i为行数 第0行和第numRow-1行。 ans += str[i+k*(numRows*2-2)], k ...
分类:
其他好文 时间:
2017-06-12 23:55:14
阅读次数:
195
问题的大意就是将字符串中的字符按锯齿状(倒N形)垂直由上向下放置,最后水平从左向右读取。比如 ABCDEFGHIJKLMN,4表示 A G M B F H L N C E I K D J 按水平顺序读取的结果则为AGMBFHLNCEIKDJ。(原题目的描述就很有问题) 解决方案非常简单,可以发现字符 ...
分类:
其他好文 时间:
2017-06-09 22:40:01
阅读次数:
139
比赛链接:点击打开链接 ,,杭电把比赛关了代码都找不到了。。 无责任民科还是mark一下好了。。 HDU 4823 Energy Conversion 把式子变换一下发现是一个等比数列,高速幂就可以。 #include<stdio.h> #include<iostream> #include<str ...
分类:
其他好文 时间:
2017-06-08 16:32:14
阅读次数:
224
Energy Conversion Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) Total Submission(s): 85 Accepted Submission(s): 46 ...
分类:
其他好文 时间:
2017-06-06 22:08:28
阅读次数:
142