当前位置:网站首页>[C language] [sword finger offer article] - replace spaces
[C language] [sword finger offer article] - replace spaces
2022-07-02 21:24:00 【:-D!! yzq】
Title Description
Please implement a function , Put the string s Replace each space in with "%20".
source : Power button (LeetCode)
link :https://leetcode-cn.com/problems/ti-huan-kong-ge-lcof/
Copyright belongs to the network . For commercial reprint, please contact the official authority , Non-commercial reprint please indicate the source .
ideas
Using the double pointer idea , The first pointer traverses the array to find each space , And replace the space with ’\0’ , The second pointer points to the first address of the source string , And then use it strcat Move the address indicated by the second pointer to the first ’\0’ The string of is appended to the destination address , Last , The second pointer moves to the next address of the first pointer , loop , Until the source string is traversed .( The idea was inspired by the solution of a big man : The most coquettish I'm here , are you ready )
Code implementation
char* replaceSpace(char* s){
char *restr = NULL;
char *str = "%20";
int i = 0;
char *ptr = s;
int len = 0;
len = strlen(s);
restr = malloc(sizeof(char)*len*3+1);
if(restr == NULL)
{
printf("malloc failed!\n");
return NULL;
}
restr[0] = '\0';
for(i = 0; s[i] != '\0'; i++)
{
if(s[i] != ' ')
{
continue;
}
s[i] = '\0';
strcat(restr,ptr);
strcat(restr,str);
ptr = s + i + 1;
}
strcat(restr,ptr);
return restr;
}
When malloc And strcat When used in combination , One thing to note :malloc The allocated memory will be automatically added to the end address \0
,strcat Will appear first from the address \0
Start adding , So the sentence restr[0] = '\0';
Is the essence of the whole algorithm . At that time, there were always cross-border operations , Also depressed for a long time .
边栏推荐
- Welfare | Pu Aries | liv heart co branded Plush surrounding new products are on the market!
- 想请教一下,究竟有哪些劵商推荐?手机开户是安全么?
- How to open an account online? Is it safe to open a mobile account?
- Customized Huawei hg8546m restores Huawei's original interface
- Is it safe to open an account for online stock speculation? I'm a novice, please guide me
- Construction and maintenance of business websites [8]
- Backpack template
- Internal/validators js:124 throw new ERR_ INVALID_ ARG_ Type (name, 'string', value) -- solution
- China's log saw blade market trend report, technological innovation and market forecast
- [12] the water of the waves is clear, which can wash my tassel. The water of the waves is muddy, which can wash my feet
猜你喜欢
Research Report on ranking analysis and investment strategic planning of RFID market competitiveness of China's industrial manufacturing 2022-2028 Edition
[cloud native topic -50]:kubesphere cloud Governance - operation - step by step deployment of microservice based business applications - database middleware MySQL microservice deployment process
5 environment construction spark on yarn
In depth research and investment feasibility report of global and Chinese isolator industry, 2022-2028
Highly qualified SQL writing: compare lines. Don't ask why. Asking is highly qualified..
Hot backup routing protocol (HSRP)
[shutter] statefulwidget component (image component | textfield component)
7. Build native development environment
kernel tty_ struct
26 FPS video super-resolution model DAP! Output 720p Video Online
随机推荐
Research Report on the overall scale, major manufacturers, major regions, products and application segmentation of multi-channel signal conditioners in the global market in 2022
[fluent] dart technique (independent main function entry | nullable type determination | default value setting)
Report on investment development and strategic recommendations of China's vibration isolator market, 2022-2027
I did a craniotomy experiment: talk about macromolecule coding theory and Lao Wang's fallacy from corpus callosum and frontal leukotomy
Review of the latest 2022 research on "deep learning methods for industrial defect detection"
Construction and maintenance of business websites [4]
Internet Explorer ignores cookies on some domains (cannot read or set cookies)
Welfare | Pu Aries | liv heart co branded Plush surrounding new products are on the market!
Cloud computing technology [2]
China's Micro SD market trend report, technology dynamic innovation and market forecast
[shutter] shutter layout component (Introduction to layout component | row component | column component | sizedbox component | clipoval component)
Talk about macromolecule coding theory and Lao Wang's fallacy from the perspective of evolution theory
Select function
Sweet talk generator, regular greeting email machine... Open source programmers pay too much for this Valentine's day
I drew a Gu ailing with characters!
Research Report on the overall scale, major manufacturers, major regions, products and applications of swivel chair gas springs in the global market in 2022
Structured text language XML
Hot backup routing protocol (HSRP)
Research Report on micro vacuum pump industry - market status analysis and development prospect prediction
Download vagrant box file locally from Atlas and configuring it