java会写一手好熊
码龄12年
求更新 关注
提问 私信
  • 博客:13,618
    13,618
    总访问量
  • 11
    原创
  • 4
    粉丝
  • 0
    关注
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:上海市
加入CSDN时间: 2014-07-21
博客简介:

qq_18182057的博客

查看详细资料
个人成就
  • 获得4次点赞
  • 内容获得0次评论
  • 获得5次收藏
  • 博客总排名2,493,532名
创作历程
  • 7篇
    2018年
  • 3篇
    2017年
  • 3篇
    2016年
成就勋章

TA关注的专栏 0

TA关注的收藏夹 0

TA关注的社区 0

TA参与的活动 0

创作活动更多

「谁说嵌入式只是调包和焊板子?」—— 2026嵌入式全栈技术征锋令

谁说嵌入式只会“Ctrl+C 调包”和“拿电烙铁焊板子”?2026嵌入式全栈技术征锋令正式启幕! 本次活动专为硬核硬件/软件开发者打造,无论你是刚玩转裸机外设的萌新,还是精通RTOS调度、死磕底层驱动的行业老手,亦或是执掌系统架构的大神,这里都是你证明实力的舞台! 拒绝表面功夫,每一行代码,都有撬动硬件的力量!晒出你的硬核工程实战,为嵌入式开发者的全栈硬实力正名!

211人参与 去参加
  • 最近
  • 文章
  • 专栏
  • 代码仓
  • 资源
  • 收藏
  • 关注/订阅/互动
更多
  • 最近

  • 文章

  • 专栏

  • 代码仓

  • 资源

  • 收藏

  • 关注/订阅/互动

  • 社区

  • 帖子

  • 问答

  • 课程

  • 视频

搜索 取消

蓝牙联机五子棋

发布资源 2015.05.26 ·
rar

android SOCKET编程中出现connection reset

在android socket编程中,在PC端和PC上的模拟器实验一个APP,功能无报错运行。但是把服务器程序移植到笔记本上,真机连接笔记本时,修改了客户端socket的连接的IP地址后(这个IP是在笔记本联网后,在cmd下使用ipconfig查到的外网IP),手机向服务器发出请求时,却报出了connection reset错误。发现自己忘记了手机通过 wifi 连接笔记本时,这时候手机应当属于局...
原创
博文更新于 2018.03.08 ·
2242 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

数组移0到末尾(不能新建数组)

Given an array nums, write a function to move all 0's to the end of it while maintaining the relative order of the non-zero elements.For example, given nums = [0, 1, 0, 3, 12], after calling your func...
原创
博文更新于 2018.03.08 ·
562 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

机器人到达终点有几条路径(动态规划)

无障碍版本:A robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).The robot can only move either down or right at any point in time. The robot is trying to reach th...
原创
博文更新于 2018.03.08 ·
2589 阅读 ·
0 点赞 ·
0 评论 ·
2 收藏

给有序数组去重

Given a sorted array, remove the duplicates in-place such that each element appear only once and return the new length.Do not allocate extra space for another array, you must do this by modifying the ...
原创
博文更新于 2018.03.08 ·
1574 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

最大蓄水量问题

Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endpoints of line i is at (i, ai) and (i, 0). Find two ...
原创
博文更新于 2018.03.08 ·
580 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

电话号码可能组成的字符串

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.Input:Digit string "23"...
原创
博文更新于 2018.03.08 ·
702 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

字符串中最长回文字符串

Given a string s, find the longest palindromic substring in s. You may assume that the maximum length of s is 1000.Example:Input: "babad"Output: "bab"Note: "aba" is also a valid answer. Example:I...
原创
博文更新于 2018.03.08 ·
244 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

字符串中非重复子串

Given a string, find the length of the longest substring without repeating characters.Examples:Given "abcabcbb", the answer is "abc", which the length is 3.Given "bbbbb", the answer is "b", with the l...
原创
博文更新于 2018.03.08 ·
291 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

MD5算法循环中为什么会有 & 0XFF

在32位的电脑中数字都是以32格式存放的,如果是要求一个byte(8位)类型的数字,对于int这种32位的整形,高24位具有随机性(从所有的数字形式来看,前面的24位取值并不确定,我把它视为具有一定的随机性,比如int型的整数,高24位的取值都是不确定的。),低8位才是实际的数据。java.lang.Integer.toHexString() 方法的参数是int(32位)类型,如果
转载
博文更新于 2017.12.08 ·
800 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

android studio 3.0版本升级问题

android studio 3.0版本升级问题修改:===》 问题一[java] view plain copy print?Error:Cannot choose between the following configurations of project :pickerview:    - debugApiEl
转载
博文更新于 2017.11.20 ·
1634 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

CCF 窗口

CCF真题答案
原创
博文更新于 2016.12.08 ·
704 阅读 ·
2 点赞 ·
0 评论 ·
1 收藏

编译原理-逆波兰表达式JAVA算法

Demo基于Java语言[java] view plain copy "font-size:18px;">public class InversePoland {      // 9+(3-1)*3+10/2 = 20      //private static String[] ss = new String[]{"9","+","("
原创
博文更新于 2016.11.21 ·
375 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

编译原理中的逆波兰表达式(数据流图中运算变量的流程)

表达式一般由操作数(Operand)、运算符(Operator)组成,例如算术表达式中,通常把运算符放在两个操作数的中间,这称为中缀表达式(Infix Expression),如A+B。波兰数学家Jan Lukasiewicz提出了另一种数学表示法,它有两种表示形式:把运算符写在操作数之前,称为波兰表达式(Polish Expression)或前缀表达式(Prefix Ex
原创
博文更新于 2016.11.21 ·
1322 阅读 ·
2 点赞 ·
0 评论 ·
4 收藏