logo
publist
写文章

简介

该用户还未填写简介

擅长的技术栈

可提供的服务

暂无可提供的服务

x264在linux系统下的简单配置

1.所需资源如下:①x264最新版本http://http://www.videolan.org/developers/x264.html②nasm最新版本http://www.nasm.us/pub/nasm/releasebuilds/2.13.03/2.在linux系统中安装配置nasm注:这里配置nasm主要是利用汇编指令进行加速。我这里下载的是nasm-2.13.03,切换到nasm-2

#linux
Fizz Buzz问题及解法

问题描述:Write a program that outputs the string representation of numbers from 1 to n.But for multiples of three it should output “Fizz” instead of the number and for the multiples of five output “

Letter Combinations of a Phone Number问题及解法

问题描述:Given a digit string, return all possible letter combinations that the number could represent.A mapping of digit to letters (just like on the telephone buttons) is given below.示例:

Add Digits问题及解法

问题描述:Given a non-negative integer num, repeatedly add all its digits until the result has only one digit.示例:Given num = 38, the process is like: 3 + 8 = 11, 1+ 1 = 2. Since 2 has only one dig

到底了