- leetcode 12 整数转罗马数字
NewDiscoverer
LeetCodeleetcode算法
自己的写法这里遇到一个问题就是strcat函数,带来的问题strcat的第一个参数必须要有足够的空间来存放字符,所以我使用malloc时*16,来保证空间足够。char*intToRoman(intnum){char*st[]={"I","II","III","IV","V","VI","VII","VIII","IX"};char*st2[]={"X","XX","XXX","XL","L","
- LeetCode 12.整数转罗马数字
HorsePower_
LeetCodeleetcode
LeetCode12.整数转罗马数字1.解法1packageLeetCode;importjava.util.HashMap;importjava.util.Map;classSolution{publicstaticvoidmain(String[]args){intnum=58;Stringresult=intToRoman(num);System.out.println(result);}p
- intToRoman
走地牙
/*q=x/1000;x=x%1000;forq->m;wb=x/500;x=x%500;判断wb是否等于9;forwb->d;yb=x/100;x=x%100;ybif4;foryb->c;以此类推;*/classSolution{publicStringintToRoman(intnum){intx=num;StringBuilderresult=newStringBuilder();whil
- 12.整数转罗马数字(LeetCode)——C语言
阿料
leetcodec算法
方法一、贪心算法#include#include#includechar*intToRoman(intnum){structintToRoman{intnum;char*str;}list[13]={{1000,"M"},{900,"CM"},{500,"D"},{400,"CD"},{100,"C"},{90,"XC"},{50,"L"},{40,"XL"},{10,"X"},{9,"IX"},
- 12.整数转罗马数字(LeetCode)——C语言
阿料
leetcodec算法
方法一、贪心算法#include#include#includechar*intToRoman(intnum){structintToRoman{intnum;char*str;}list[13]={{1000,"M"},{900,"CM"},{500,"D"},{400,"CD"},{100,"C"},{90,"XC"},{50,"L"},{40,"XL"},{10,"X"},{9,"IX"},
- Leecode12_intToRoman
decouples
Leecode
题目:给定一个数字,将其转为罗马文字思路:直接贪心法,先从最大的M开始,如果num比1000大,那么则除以他后再比,如果除后不大于当前标识符,则除以第二大的900,依次下去,直到除到个位I。类似于找去商店买东西找零。代码:std::stringLeecode12_intToRoman(intnum){intvalues[]={1000,900,500,400,100,90,50,40,10,9,5
- leetcode--整数转罗马数,罗马数转整数
没手指的蓝胖子
leetcode
1、整数转罗马数暴力的很……自己写的代码简直没眼看char*intToRoman(intnum){char*r=(char*)malloc(sizeof(int)*(16));inti=0;if(num/1000>0){switch(num/1000){case1:r[i]='M';i++;break;case2:r[i]='M';i++;r[i]='M';i++;break;case3:r[i]
- intToRoman
qustJHJ
leetCode
#-*-coding:utf-8-*-'''把阿拉伯数字转换为罗马数字,采用查表法罗马数字的定义:(维基百科)罗马数字共有7个,即Ⅰ(1)、Ⅴ(5)、Ⅹ(10)、Ⅼ(50)、Ⅽ(100)、Ⅾ(500)和Ⅿ(1000)。按照下述的规则可以表示任意正整数。需要注意的是罗马数字中没有“0”,与进位制无关。一般认为罗马数字只用来记数,而不作演算。重复数次:一个罗马数字重复几次,就表示这个数的几倍。右加左减
- intToRoman
athony
12.整数转罗马数字罗马数字包含以下七种字符:I,V,X,L,C,D和M。字符数值I1V5X10L50C100D500M1000例如,罗马数字2写做II,即为两个并列的1。12写做XII,即为X+II。27写做XXVII,即为XX+V+II。通常情况下,罗马数字中小的数字在大的数字的右边。但也存在特例,例如4不写做IIII,而是IV。数字1在数字5的左边,所表示的数等于大数5减小数1得到的数值4。
- [LeetCode]12. Integer to Roman
Eazow
Givenaninteger,convertittoaromannumeral.Inputisguaranteedtobewithintherangefrom1to3999.方法将罗马数字和数字的对应关系从大到小列举出来,注意900、400、90、40、9、4这些数字对应的罗马字符c代码#include#include#includechar*intToRoman(intnum){intvals[
- 每周一道算法题(八)
CrazySteven
本周的题目是一道经典题,难度级别"Medium"...题目:将1~3999的阿拉伯数字转化为罗马数字。这题还是比较经典的,做这题之前要先了解一下罗马数字,然后看看实现代码:char*intToRoman(intnum){intnumArr[]={1000,900,500,400,100,90,50,40,10,9,5,4,1};char*numRoman[]={"M","CM","D","CD",
- 12.整数转罗马数字
无名的殇
题目思路1.取出每一位数字2.从高位向低位替换数字成对应的罗马数字代码//1维代表位数,2维分别表示1和5charunit[][2]={{'I','V'},{'X','L'},{'C','D'},{'M','N'},};char*intToRoman(intnum){intop;char*result=malloc(100);intstep=0;char*head=result;intcharst
- LeetCode第13题: romanToInt(C语言)
张品品
上一题:LeetCode第12题:intToRoman(C语言)intromanToInt(char*s){intresult=0;if(strlen(s)==0)returnresult;intindex=0;while(s[index]!='\0'){charcur=s[index];charnext_cur=s[index+1];if(cur=='C'&&next_cur=='M'){res
- LeetCode第12题: intToRoman(C语言)
张品品
上一题:LeetCode第11题:maxArea(C语言)思路:分别建立个位、十位、百位、千位的数组的索引转换数组,然后对输入的整数num整除取余,所得的余数在对应的数组中找到其对应的罗马字符即可,理解起来难度应该不大char*intToRoman(intnum){char*result=(char*)malloc(100*sizeof(char));intindex=0;charrefer_ba
- Integer to Roman
Integer
问题:将数字转化为罗马数字分析:将所有的数字打表出来
class Solution {
public:
string intToRoman(int num) {
char c[10][10][10]={{"0","I","II","III","IV","V
- LeetCode: Integer to Roman
LeetCode
这题因为不知道罗马数是怎么一回事。。就去网上找了答案
1 class Solution {
2 public:
3 string intToRoman(int num) {
4 // Start typing your C/C++ solution below
5 // DO NOT write int main() function
- [LeetCode]Integer to Roman
LeetCode
Given an integer, convert it to a roman numeral.
Input is guaranteed to be within the range from 1 to 3999.
思考:罗马数字有I,V,X,L,C,D,M。其中4,9左减,其他右加。
class Solution {
public:
string intToRoman(int
- LeetCode Integer to Roman
LeetCode
链接: https://oj.leetcode.com/problems/integer-to-roman/
题目上已经说最大出现的整型值为3999,这样就很简单了。
class Solution
{
public:
string intToRoman(int num)
{
string ans;
char str_num[8];
sprintf(str_
- Integer to Roman(JAVA)
Integer
1 public String intToRoman(int num) {
2 int[] values={1000,900,500,400,100,90,50,40,10,9,5,4,1};
3 String[] roman={"M","CM","D","CD","C&
- Integer to Roman
Integer
Given an integer, convert it to a roman numeral.
Input is guaranteed to be within the range from 1 to 3999. class Solution {
public:
string intToRoman( int
- Leetcode: Integer to Roman
LeetCode
Given an integer, convert it to a roman numeral.
Input is guaranteed to be within the range from 1 to 3999.
一次过
1 public class Solution {
2 public String intToRoman(int num) {
3
- LeetCode题解——Integer to Roman
LeetCode
题目:
将整数转换为罗马数字。罗马数字规则可以参考: 维基百科-罗马数字
解法:
类似于进制转换,从大的基数开始,求整数对基数的商和余,来进行转换。
代码:
1 class Solution { 2 public: 3 string intToRoman(int num) { 4 string result; 5
- Leetcode#12 Integer to Roman
LeetCode
原题地址
找规律+模拟,真没啥可说的。
代码:
1 string intToRoman(int num) {
2 string res;
3
4 while (num >= 1000) {
5 res += "M";
6
- LeetCode Integer to Roman
LeetCode
class Solution {
private:
const static char* pattern[];
const static char* roman_digit[];
public:
string intToRoman(int num) {
if (num < 1 || num > 3999) return "&
- leetcode[12]Integer to Roman
LeetCode
Given an integer, convert it to a roman numeral.
Input is guaranteed to be within the range from 1 to 3999.
public class Solution {
public String intToRoman(int num) {
int[] values =
- 12. Integer to Roman (Map)
Integer
Given an integer, convert it to a roman numeral.
Input is guaranteed to be within the range from 1 to 3999.
class Solution {
public:
string intToRoman(int num) {
int values[]
- [LeetCode] Integer to Roman
LeetCode
Given an integer, convert it to a roman numeral.
Input is guaranteed to be within the range from 1 to 3999.
Solution:
public class Solution {
public String intToRoman(int number) {
i
- LeetCode 12 - Integer to Roman
yuanhsh
LeetCode
Given an integer, convert it to a roman numeral.
Input is guaranteed to be within the range from 1 to 3999.
public String intToRoman(int num) {
StringBuilder sb = new StringBuilder();
- LeetCode 12 - Integer to Roman
yuanhsh
LeetCode
Given an integer, convert it to a roman numeral.
Input is guaranteed to be within the range from 1 to 3999.
public String intToRoman(int num) {
StringBuilder sb = new StringBuilder();
- Integer to Roman
hcx2013
Integer
Given a roman numeral, convert it to an integer.
Input is guaranteed to be within the range from 1 to 3999.
public class Solution {
public String intToRoman(int num) {
Map<I
- Maven
Array_06
eclipsejdkmaven
Maven
Maven是基于项目对象模型(POM), 信息来管理项目的构建,报告和文档的软件项目管理工具。
Maven 除了以程序构建能力为特色之外,还提供高级项目管理工具。由于 Maven 的缺省构建规则有较高的可重用性,所以常常用两三行 Maven 构建脚本就可以构建简单的项目。由于 Maven 的面向项目的方法,许多 Apache Jakarta 项目发文时使用 Maven,而且公司
- ibatis的queyrForList和queryForMap区别
bijian1013
javaibatis
一.说明
iBatis的返回值参数类型也有种:resultMap与resultClass,这两种类型的选择可以用两句话说明之:
1.当结果集列名和类的属性名完全相对应的时候,则可直接用resultClass直接指定查询结果类
- LeetCode[位运算] - #191 计算汉明权重
Cwind
java位运算LeetCodeAlgorithm题解
原题链接:#191 Number of 1 Bits
要求:
写一个函数,以一个无符号整数为参数,返回其汉明权重。例如,‘11’的二进制表示为'00000000000000000000000000001011', 故函数应当返回3。
汉明权重:指一个字符串中非零字符的个数;对于二进制串,即其中‘1’的个数。
难度:简单
分析:
将十进制参数转换为二进制,然后计算其中1的个数即可。
“
- 浅谈java类与对象
15700786134
java
java是一门面向对象的编程语言,类与对象是其最基本的概念。所谓对象,就是一个个具体的物体,一个人,一台电脑,都是对象。而类,就是对象的一种抽象,是多个对象具有的共性的一种集合,其中包含了属性与方法,就是属于该类的对象所具有的共性。当一个类创建了对象,这个对象就拥有了该类全部的属性,方法。相比于结构化的编程思路,面向对象更适用于人的思维
- linux下双网卡同一个IP
被触发
linux
转自:
http://q2482696735.blog.163.com/blog/static/250606077201569029441/
由于需要一台机器有两个网卡,开始时设置在同一个网段的IP,发现数据总是从一个网卡发出,而另一个网卡上没有数据流动。网上找了下,发现相同的问题不少:
一、
关于双网卡设置同一网段IP然后连接交换机的时候出现的奇怪现象。当时没有怎么思考、以为是生成树
- 安卓按主页键隐藏程序之后无法再次打开
肆无忌惮_
安卓
遇到一个奇怪的问题,当SplashActivity跳转到MainActivity之后,按主页键,再去打开程序,程序没法再打开(闪一下),结束任务再开也是这样,只能卸载了再重装。而且每次在Log里都打印了这句话"进入主程序"。后来发现是必须跳转之后再finish掉SplashActivity
本来代码:
// 销毁这个Activity
fin
- 通过cookie保存并读取用户登录信息实例
知了ing
JavaScripthtml
通过cookie的getCookies()方法可获取所有cookie对象的集合;通过getName()方法可以获取指定的名称的cookie;通过getValue()方法获取到cookie对象的值。另外,将一个cookie对象发送到客户端,使用response对象的addCookie()方法。
下面通过cookie保存并读取用户登录信息的例子加深一下理解。
(1)创建index.jsp文件。在改
- JAVA 对象池
矮蛋蛋
javaObjectPool
原文地址:
http://www.blogjava.net/baoyaer/articles/218460.html
Jakarta对象池
☆为什么使用对象池
恰当地使用对象池化技术,可以有效地减少对象生成和初始化时的消耗,提高系统的运行效率。Jakarta Commons Pool组件提供了一整套用于实现对象池化
- ArrayList根据条件+for循环批量删除的方法
alleni123
java
场景如下:
ArrayList<Obj> list
Obj-> createTime, sid.
现在要根据obj的createTime来进行定期清理。(释放内存)
-------------------------
首先想到的方法就是
for(Obj o:list){
if(o.createTime-currentT>xxx){
- 阿里巴巴“耕地宝”大战各种宝
百合不是茶
平台战略
“耕地保”平台是阿里巴巴和安徽农民共同推出的一个 “首个互联网定制私人农场”,“耕地宝”由阿里巴巴投入一亿 ,主要是用来进行农业方面,将农民手中的散地集中起来 不仅加大农民集体在土地上面的话语权,还增加了土地的流通与 利用率,提高了土地的产量,有利于大规模的产业化的高科技农业的 发展,阿里在农业上的探索将会引起新一轮的产业调整,但是集体化之后农民的个体的话语权 将更少,国家应出台相应的法律法规保护
- Spring注入有继承关系的类(1)
bijian1013
javaspring
一个类一个类的注入
1.AClass类
package com.bijian.spring.test2;
public class AClass {
String a;
String b;
public String getA() {
return a;
}
public void setA(Strin
- 30岁转型期你能否成为成功人士
bijian1013
成功
很多人由于年轻时走了弯路,到了30岁一事无成,这样的例子大有人在。但同样也有一些人,整个职业生涯都发展得很优秀,到了30岁已经成为职场的精英阶层。由于做猎头的原因,我们接触很多30岁左右的经理人,发现他们在职业发展道路上往往有很多致命的问题。在30岁之前,他们的职业生涯表现很优秀,但从30岁到40岁这一段,很多人
- [Velocity三]基于Servlet+Velocity的web应用
bit1129
velocity
什么是VelocityViewServlet
使用org.apache.velocity.tools.view.VelocityViewServlet可以将Velocity集成到基于Servlet的web应用中,以Servlet+Velocity的方式实现web应用
Servlet + Velocity的一般步骤
1.自定义Servlet,实现VelocityViewServl
- 【Kafka十二】关于Kafka是一个Commit Log Service
bit1129
service
Kafka is a distributed, partitioned, replicated commit log service.这里的commit log如何理解?
A message is considered "committed" when all in sync replicas for that partition have applied i
- NGINX + LUA实现复杂的控制
ronin47
lua nginx 控制
安装lua_nginx_module 模块
lua_nginx_module 可以一步步的安装,也可以直接用淘宝的OpenResty
Centos和debian的安装就简单了。。
这里说下freebsd的安装:
fetch http://www.lua.org/ftp/lua-5.1.4.tar.gz
tar zxvf lua-5.1.4.tar.gz
cd lua-5.1.4
ma
- java-14.输入一个已经按升序排序过的数组和一个数字, 在数组中查找两个数,使得它们的和正好是输入的那个数字
bylijinnan
java
public class TwoElementEqualSum {
/**
* 第 14 题:
题目:输入一个已经按升序排序过的数组和一个数字,
在数组中查找两个数,使得它们的和正好是输入的那个数字。
要求时间复杂度是 O(n) 。如果有多对数字的和等于输入的数字,输出任意一对即可。
例如输入数组 1 、 2 、 4 、 7 、 11 、 15 和数字 15 。由于
- Netty源码学习-HttpChunkAggregator-HttpRequestEncoder-HttpResponseDecoder
bylijinnan
javanetty
今天看Netty如何实现一个Http Server
org.jboss.netty.example.http.file.HttpStaticFileServerPipelineFactory:
pipeline.addLast("decoder", new HttpRequestDecoder());
pipeline.addLast(&quo
- java敏感词过虑-基于多叉树原理
cngolon
违禁词过虑替换违禁词敏感词过虑多叉树
基于多叉树的敏感词、关键词过滤的工具包,用于java中的敏感词过滤
1、工具包自带敏感词词库,第一次调用时读入词库,故第一次调用时间可能较长,在类加载后普通pc机上html过滤5000字在80毫秒左右,纯文本35毫秒左右。
2、如需自定义词库,将jar包考入WEB-INF工程的lib目录,在WEB-INF/classes目录下建一个
utf-8的words.dict文本文件,
- 多线程知识
cuishikuan
多线程
T1,T2,T3三个线程工作顺序,按照T1,T2,T3依次进行
public class T1 implements Runnable{
@Override
 
- spring整合activemq
dalan_123
java spring jms
整合spring和activemq需要搞清楚如下的东东1、ConnectionFactory分: a、spring管理连接到activemq服务器的管理ConnectionFactory也即是所谓产生到jms服务器的链接 b、真正产生到JMS服务器链接的ConnectionFactory还得
- MySQL时间字段究竟使用INT还是DateTime?
dcj3sjt126com
mysql
环境:Windows XPPHP Version 5.2.9MySQL Server 5.1
第一步、创建一个表date_test(非定长、int时间)
CREATE TABLE `test`.`date_test` (`id` INT NOT NULL AUTO_INCREMENT ,`start_time` INT NOT NULL ,`some_content`
- Parcel: unable to marshal value
dcj3sjt126com
marshal
在两个activity直接传递List<xxInfo>时,出现Parcel: unable to marshal value异常。 在MainActivity页面(MainActivity页面向NextActivity页面传递一个List<xxInfo>): Intent intent = new Intent(this, Next
- linux进程的查看上(ps)
eksliang
linux pslinux ps -llinux ps aux
ps:将某个时间点的进程运行情况选取下来
转载请出自出处:http://eksliang.iteye.com/admin/blogs/2119469
http://eksliang.iteye.com
ps 这个命令的man page 不是很好查阅,因为很多不同的Unix都使用这儿ps来查阅进程的状态,为了要符合不同版本的需求,所以这个
- 为什么第三方应用能早于System的app启动
gqdy365
System
Android应用的启动顺序网上有一大堆资料可以查阅了,这里就不细述了,这里不阐述ROM启动还有bootloader,软件启动的大致流程应该是启动kernel -> 运行servicemanager 把一些native的服务用命令启动起来(包括wifi, power, rild, surfaceflinger, mediaserver等等)-> 启动Dalivk中的第一个进程Zygot
- App Framework发送JSONP请求(3)
hw1287789687
jsonp跨域请求发送jsonpajax请求越狱请求
App Framework 中如何发送JSONP请求呢?
使用jsonp,详情请参考:http://json-p.org/
如何发送Ajax请求呢?
(1)登录
/***
* 会员登录
* @param username
* @param password
*/
var user_login=function(username,password){
// aler
- 发福利,整理了一份关于“资源汇总”的汇总
justjavac
资源
觉得有用的话,可以去github关注:https://github.com/justjavac/awesome-awesomeness-zh_CN 通用
free-programming-books-zh_CN 免费的计算机编程类中文书籍
精彩博客集合 hacke2/hacke2.github.io#2
ResumeSample 程序员简历
- 用 Java 技术创建 RESTful Web 服务
macroli
java编程WebREST
转载:http://www.ibm.com/developerworks/cn/web/wa-jaxrs/
JAX-RS (JSR-311) 【 Java API for RESTful Web Services 】是一种 Java™ API,可使 Java Restful 服务的开发变得迅速而轻松。这个 API 提供了一种基于注释的模型来描述分布式资源。注释被用来提供资源的位
- CentOS6.5-x86_64位下oracle11g的安装详细步骤及注意事项
超声波
oraclelinux
前言:
这两天项目要上线了,由我负责往服务器部署整个项目,因此首先要往服务器安装oracle,服务器本身是CentOS6.5的64位系统,安装的数据库版本是11g,在整个的安装过程中碰到很多的坑,不过最后还是通过各种途径解决并成功装上了。转别写篇博客来记录完整的安装过程以及在整个过程中的注意事项。希望对以后那些刚刚接触的菜鸟们能起到一定的帮助作用。
安装过程中可能遇到的问题(注
- HttpClient 4.3 设置keeplive 和 timeout 的方法
supben
httpclient
ConnectionKeepAliveStrategy kaStrategy = new DefaultConnectionKeepAliveStrategy() {
@Override
public long getKeepAliveDuration(HttpResponse response, HttpContext context) {
long keepAlive
- Spring 4.2新特性-@Import注解的升级
wiselyman
spring 4
3.1 @Import
@Import注解在4.2之前只支持导入配置类
在4.2,@Import注解支持导入普通的java类,并将其声明成一个bean
3.2 示例
演示java类
package com.wisely.spring4_2.imp;
public class DemoService {
public void doSomethin