- 论坛徽章:
- 2
|
执行这个程序吧!- /* 将输入文件按每行的最后一个字右对齐 */
- #include <ctype.h>
- #include <stdio.h>
- #include <stdlib.h>
- #include <string.h>
- int file_load(const char *filepath, char **o_buf, int *o_buf_len)
- {
- FILE *fp;
- char *buf;
- int buf_len;
- int retval;
- retval = 0;
- fp = fopen(filepath, "rb");
- if (fp != NULL) {
- fseek(fp, 0, SEEK_END);
- buf_len = ftell(fp);
- buf = (char *)malloc(buf_len + 1);
- if (buf != NULL) {
- memset(buf, 0, buf_len + 1);
- fseek(fp, 0, SEEK_SET);
- if (fread(buf, buf_len, 1, fp) == 1) {
- *o_buf = buf;
- *o_buf_len = buf_len;
- }else {
- retval = -3; /* ERROR: can't read file */
- }
- if (retval != 0) {
- free(buf);
- }
- }else {
- retval = -2; /* ERROR: can't alloc memory */
- }
- fclose(fp);
- }else {
- retval = -1; /* ERROR: can't open file */
- }
- return retval;
- }
- int nstr_chr(const char *s, int off, int lmt, int c)
- {
- for (; off < lmt; ++off) {
- if (s[off] == c) {
- return off;
- }
- }
- return -1;
- }
- int nstr_trim(const char *s, int off, int lmt)
- {
- for (; off < lmt; ++off) {
- if (!isspace(s[off])) {
- break;
- }
- }
- return off;
- }
- int nstr_rtrim(const char *s, int off, int lmt)
- {
- for (; off < lmt; --lmt) {
- if (!isspace(s[lmt - 1])) {
- break;
- }
- }
- return lmt;
- }
- int nstr_rnpbrk(const char *s, int off, int lmt, const char *charset, int charset_len)
- {
- for (; off < lmt; --lmt) {
- if (nstr_chr(charset, 0, charset_len, s[lmt - 1]) != -1) {
- break;
- }
- }
- return lmt;
- }
- int get_max_column(const char *s, int lmt)
- {
- int off;
- int line_lmt;
- int line_nxt;
- int column;
- int line_columns;
- column = 0;
- for (off = 0; off < lmt; off = line_nxt) {
- line_lmt = nstr_chr(s, off, lmt, '\n');
- if (line_lmt == -1) {
- line_lmt = lmt;
- line_nxt = lmt;
- }else {
- line_nxt = line_lmt + 1;
- }
- line_lmt = nstr_rtrim(s, off, line_lmt);
- line_columns = line_lmt - off;
- if (line_columns > column) {
- column = line_columns;
- }
- }
- return column;
- }
- int main(int argc, const char *argv[])
- {
- char *s;
- int off;
- int lmt;
- int retval;
- int line_lmt;
- int line_nxt;
- int columns;
- int line_columns;
- int last_word_off;
- int insert_space;
- const char *infile;
- if (argc == 2) {
- infile = argv[1];
- }else {
- infile = "sample\\data.txt";
- }
- printf("%s\n", infile);
- retval = file_load(infile, &s, &lmt);
- if (retval == 0) {
- columns = get_max_column(s, lmt);
- for (off = 0; off < lmt; off = line_nxt) {
- line_lmt = nstr_chr(s, off, lmt, '\n');
- if (line_lmt == -1) {
- line_lmt = lmt;
- line_nxt = lmt;
- }else {
- line_nxt = line_lmt + 1;
- }
- line_lmt = nstr_rtrim(s, off, line_lmt);
- line_columns = line_lmt - off;
- if (line_columns < columns) {
- last_word_off = nstr_rnpbrk(s, off, line_lmt, " \t", 2);
- printf("%.*s", last_word_off - off, s + off);
- insert_space = columns - line_columns;
- printf("%*c", insert_space, ' ');
- printf("%.*s\n", line_lmt - last_word_off, s + last_word_off);
- }else {
- printf("%.*s\n", line_lmt - off, s + off);
- }
- }
- free(s);
- }
- return retval;
- }
复制代码 |
|