hamztx
码龄14年
求更新 关注
提问 私信
  • 博客:50,395
    50,395
    总访问量
  • 24
    原创
  • 13
    粉丝
  • 35
    关注
IP属地以运营商信息为准,境内显示到省(区、市),境外显示到国家(地区)
IP 属地:北京市
加入CSDN时间: 2012-09-14
博客简介:

hamztx的专栏

查看详细资料
个人成就
  • 获得7次点赞
  • 内容获得1次评论
  • 获得28次收藏
  • 博客总排名1,738,199名
创作历程
  • 9篇
    2015年
  • 17篇
    2014年
  • 4篇
    2013年
成就勋章
TA的专栏
  • opnet
    6篇
  • linux学习
    6篇
  • c语言
    2篇
  • c++
    8篇
  • java
    2篇
  • 协议
    1篇
  • webbench学习
    2篇

TA关注的专栏 0

TA关注的收藏夹 0

TA关注的社区 0

TA参与的活动 0

兴趣领域 设置
  • 嵌入式
    单片机
  • 硬件开发
    硬件工程驱动开发fpga开发dsp开发arm开发硬件架构pcb工艺
创作活动更多

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

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

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

  • 文章

  • 专栏

  • 代码仓

  • 资源

  • 收藏

  • 关注/订阅/互动

  • 社区

  • 帖子

  • 问答

  • 课程

  • 视频

搜索 取消

OPNET常见问题

发布资源 2014.07.10 ·
pdf

单片机实习--串口,数码管,矩阵键盘,DB1820

发布资源 2013.03.30 ·
doc

OPNET核心函数

发布资源 2014.07.10 ·
pdf

java经典小程序

发布资源 2014.07.11 ·
doc

opnet事件函数集

发布资源 2014.07.15 ·
docx

greed游戏设计文档

发布资源 2014.12.06 ·
rar

C语言项目案例分析源码

发布资源 2014.07.11 ·
rar

OPNET中802.11信道模型

发布资源 2014.07.10 ·
docx

centos英文版中 中文乱码的问题

问题:安装centos时选择了英文版,系统显示中文时出现了乱码的现象。解决办法:因为英文系统不支持中文,所以需要下载中文包。$yum -y install fonts-chinese$yum -y install fonts-ISO8859然后修改配置文件$ vim /etc/sysconfig/i18n将:LANG="en_
原创
博文更新于 2014.12.07 ·
1862 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

数据结构与算法(java描述)

发布资源 2014.07.11 ·
pdf

CCNA教程(杜飞)

发布资源 2014.07.11 ·
pdf

21天学通C#

发布资源 2014.07.11 ·
pdf

webbench学习

webbench 是一个网站性能压力测试工具,其模拟多个并发去测试网站的负载能力。1.安装wget http://www.ha97.com/code/webbench-1.5.tar.gztar zxvf webbench-1.5.tar.gzcd webbench-1.5makemake install2.使用webbench -c 100 -t 60 http://ww
原创
博文更新于 2015.06.01 ·
1161 阅读 ·
0 点赞 ·
0 评论 ·
2 收藏

webbench学习之getopt_long,atio

webben在main函数中使用了getopt_long函数获得main函数的输入参数,可以看到文档中的参数定义 int getopt(int argc, char * const argv[], const char *optstring); int getopt_long(int argc, char * const argv[], const char *optstrin
原创
博文更新于 2015.06.01 ·
727 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

4 Median of Two Sorted Arrays

Leetcode 4:There are two sorted arrays A and B of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+n)).简单的归并排序,将两个已排序的数组合
原创
博文更新于 2015.04.19 ·
391 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

3 Longest Substring Without Repeating Characters

Leetcode 3:Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters for "abcabcbb" is "abc", which the le
原创
博文更新于 2015.04.17 ·
430 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

1Two Sum

Leetcode 1:Given an array of integers, find two numbers such that they add up to a specific target number.The function twoSum should return indices of the two numbers such that they add up to the targ
原创
博文更新于 2015.04.16 ·
394 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

201 Bitwise AND of Numbers Range

Leetcode201:Given a range [m, n] where 0 For example, given the range [5, 7], you should return 4.m到n之间的所有数之间与,最后的结果应该是二进制数共有的前几位,例如5,6,7二进制分别为101,110,111结果为100,第一位为1其余为0。解题思路即位找到共有的前几位二
原创
博文更新于 2015.04.16 ·
488 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

198 House Robber

Leetcode198:You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stopping you from robbing each of them is tha
原创
博文更新于 2015.04.16 ·
488 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏

mysql 启动时失败

使用# yum install mysql-server mysql安装成功后,启动mysql 服务,使用# systemctl start mysqld.service 可是 会有如下问题Job for mysqld.service failed. See 'systemctl status mysqld.service' and 'journalctl -xn' f
原创
博文更新于 2015.03.16 ·
9576 阅读 ·
0 点赞 ·
0 评论 ·
0 收藏
加载更多